| 123456789101112131415161718192021 |
- <?php
- namespace app\common\model\profit;
- use app\common\model\BaseModel;
- class ZeroUserProfitsDetail extends BaseModel
- {
- private static $tablePk = 'id';
- private static $tableName = 'zero_user_profit_detail';
- public static function tablePk(): ?string
- {
- return self::$tablePk;
- }
- public static function tableName(): string
- {
- return self::$tableName;
- }
- }
|