ZeroUserProfits.php 295 B

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