UserExtract.php 368 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * @package merchant
  4. *
  5. * @author Qinii
  6. * @day 2020-06-16
  7. *
  8. *
  9. */
  10. namespace app\common\model\user;
  11. use app\common\model\BaseModel;
  12. class UserExtract extends BaseModel
  13. {
  14. public static function tablePk(): ?string
  15. {
  16. return 'extract_id';
  17. }
  18. public static function tableName(): string
  19. {
  20. return 'user_extract';
  21. }
  22. }