ZeroUserProfitsDetail.php 403 B

123456789101112131415161718192021
  1. <?php
  2. namespace app\common\model\profit;
  3. use app\common\model\BaseModel;
  4. class ZeroUserProfitsDetail extends BaseModel
  5. {
  6. private static $tablePk = 'id';
  7. private static $tableName = 'zero_user_profit_detail';
  8. public static function tablePk(): ?string
  9. {
  10. return self::$tablePk;
  11. }
  12. public static function tableName(): string
  13. {
  14. return self::$tableName;
  15. }
  16. }