| 123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * @package merchant
- *
- * @author xaboy
- * @day 2020/5/27
- *
- *
- */
- namespace app\common\model\user;
- use app\common\model\BaseModel;
- use app\common\model\store\product\Product;
- class UserVisitDay extends BaseModel
- {
- public static function tablePk(): ?string
- {
- return 'user_visit_day_id';
- }
- public static function tableName(): string
- {
- return 'user_visit_day';
- }
- }
|