SGeneralProduct.php 340 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Administrator
  5. * Date: 2021/11/23 0023
  6. * Time: 15:20
  7. */
  8. class SGeneralProduct extends MyActiveRecord
  9. {
  10. public static function model($className = __CLASS__)
  11. {
  12. return parent::model($className);
  13. }
  14. public function tableName()
  15. {
  16. return 'general_product';
  17. }
  18. }