| 1234567891011121314151617 |
- <?php
- namespace app\common\model\shared;
- use app\common\model\BaseModel;
- class SharedProsperityPointLog extends BaseModel
- {
- public static function tablePk(): ?string
- {
- return 'id';
- }
- public static function tableName(): string
- {
- return 'shared_prosperity_point_log';
- }
- }
|