123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace app\common\model\store\order;
- use app\common\model\BaseModel;
- /**
- * Class StoreOrderStatus
- * @package app\common\model\store\order
- * @author zfy
- * @day 2020/6/12
- */
- class StoreOrderStatus extends BaseModel
- {
- /**
- * @return string|null
- * @author zfy
- * @day 2020/6/12
- */
- public static function tablePk(): ?string
- {
- return null;
- }
- /**
- * @return string
- * @author zfy
- * @day 2020/6/12
- */
- public static function tableName(): string
- {
- return 'store_order_status';
- }
- }
|