AwardIntegralPriceDay.php 305 B

123456789101112131415161718
  1. <?php
  2. namespace app\common\model\user;
  3. use app\common\model\BaseModel;
  4. class AwardIntegralPriceDay extends BaseModel
  5. {
  6. public static function tablePk(): ?string
  7. {
  8. return 'id';
  9. }
  10. public static function tableName(): string
  11. {
  12. return 'award_integral_price_day';
  13. }
  14. }