MerchantIntentionApply.php 544 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /**
  3. * @package merchant
  4. *
  5. * @author xaboy
  6. * @day 2020/5/30
  7. *
  8. *
  9. */
  10. namespace app\common\model\merchant\apply;
  11. use app\common\model\BaseModel;
  12. /**
  13. * Class MerchantIntentionApply
  14. * @package app\common\model\merchant\apply
  15. * @author php迷途小书童
  16. * @created 2021/1/30 17:37
  17. */
  18. class MerchantIntentionApply extends BaseModel
  19. {
  20. public static function tablePk(): ?string
  21. {
  22. return 'mer_intention_id';
  23. }
  24. public static function tableName(): string
  25. {
  26. return 'merchant_intention';
  27. }
  28. }