| 12345678910111213141516171819202122232425262728 |
- <?php
- /**
- * @package merchant
- *
- * @author Qinii
- * @day 2020-06-16
- *
- *
- */
- namespace app\common\model\user;
- use app\common\model\BaseModel;
- class UserExtract extends BaseModel
- {
- public static function tablePk(): ?string
- {
- return 'extract_id';
- }
- public static function tableName(): string
- {
- return 'user_extract';
- }
- }
|