FeedbackReply.php 368 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * @package merchant
  4. *
  5. * @author xaboy
  6. * @day 2020/5/28
  7. *
  8. *
  9. */
  10. namespace app\common\model\user;
  11. use app\common\model\BaseModel;
  12. class FeedbackReply extends BaseModel
  13. {
  14. public static function tablePk(): ?string
  15. {
  16. return 'reply_id';
  17. }
  18. public static function tableName(): string
  19. {
  20. return 'feedback_reply';
  21. }
  22. }