| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace app\common\model\store\shipping;
- use app\common\model\BaseModel;
- class City extends BaseModel
- {
- /**
- * Author:Qinii
- * Date: 2020/5/6
- * Time: 14:20
- * @return string
- */
- public static function tablePk(): string
- {
- return 'id';
- }
- /**
- * Author:Qinii
- * Date: 2020/5/6
- * Time: 14:20
- * @return string
- */
- public static function tableName(): string
- {
- return 'system_city';
- }
- }
|