| 123456789101112131415161718 |
- <?php
- namespace app\common\model\profit;
- use app\common\model\BaseModel;
- class ProductPvModel extends BaseModel
- {
- public static function tablePk(): ?string
- {
- return 'product_id';
- }
- public static function tableName(): string
- {
- return 'product_pv';
- }
- }
|