123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace app\common\model\user;
- use app\common\model\BaseModel;
- class UserLabel extends BaseModel
- {
- /**
- * @return string
- * @author zfy
- * @day 2020-03-30
- */
- public static function tablePk(): string
- {
- return 'label_id';
- }
- /**
- * @return string
- * @author zfy
- * @day 2020-03-30
- */
- public static function tableName(): string
- {
- return 'user_label';
- }
- }
|