| 123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * @package merchant
- * @Author: Qinii
- * @Date: 2020/5/13
- */
- namespace app\common\model\store\shipping;
- use app\common\model\BaseModel;
- class Express extends BaseModel
- {
- /**
- * @Author:Qinii
- * @return string
- */
- public static function tablePk():string
- {
- return 'id';
- }
- /**
- * @Author:Qinii
- * @return string
- */
- public static function tableName():string
- {
- return 'express';
- }
- }
|