| 12345678910111213141516171819202122232425262728 |
- <?php
- /**
- * @package merchant
- *
- * @author Qinii
- * @day 2020-06-08
- *
- *
- */
- namespace app\common\model\user;
- use app\common\model\BaseModel;
- class FeedBackCategory extends BaseModel
- {
- public static function tablePk(): ?string
- {
- return 'feedback_category_id';
- }
- public static function tableName(): string
- {
- return 'feedback_category';
- }
- }
|