| 123456789101112131415161718192021222324252627 |
- <?php
- /**
- * @package merchant
- *
- * @author xaboy
- * @day 2020/5/28
- *
- *
- */
- namespace app\common\model\user;
- use app\common\model\BaseModel;
- class FeedbackReply extends BaseModel
- {
- public static function tablePk(): ?string
- {
- return 'reply_id';
- }
- public static function tableName(): string
- {
- return 'feedback_reply';
- }
- }
|