123456789101112131415161718 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Administrator
- * Date: 2019/2/26 0026
- * Time: 10:06
- */
- class SCanGenerateProduct extends MyActiveRecord
- {
- public static function model($className = __CLASS__){
- return parent::model($className);
- }
- public function tableName(){
- return 'can_generate_product';
- }
- }
|