GiftReward.php 281 B

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