UserVisitDay.php 422 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * @package merchant
  4. *
  5. * @author xaboy
  6. * @day 2020/5/27
  7. *
  8. *
  9. */
  10. namespace app\common\model\user;
  11. use app\common\model\BaseModel;
  12. use app\common\model\store\product\Product;
  13. class UserVisitDay extends BaseModel
  14. {
  15. public static function tablePk(): ?string
  16. {
  17. return 'user_visit_day_id';
  18. }
  19. public static function tableName(): string
  20. {
  21. return 'user_visit_day';
  22. }
  23. }