| 123456789101112131415161718 |
- <?php
- namespace app\common\model\user;
- use app\common\model\BaseModel;
- class AwardIntegralPriceDay extends BaseModel
- {
- public static function tablePk(): ?string
- {
- return 'id';
- }
- public static function tableName(): string
- {
- return 'award_integral_price_day';
- }
- }
|