| 123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- /**
- * @package merchant
- *
- * @author xaboy
- * @day 2020/5/30
- *
- *
- */
- namespace app\common\model\merchant\apply;
- use app\common\model\BaseModel;
- /**
- * Class MerchantIntentionApply
- * @package app\common\model\merchant\apply
- * @author php迷途小书童
- * @created 2021/1/30 17:37
- */
- class MerchantIntentionApply extends BaseModel
- {
- public static function tablePk(): ?string
- {
- return 'mer_intention_id';
- }
- public static function tableName(): string
- {
- return 'merchant_intention';
- }
- }
|