新增商户申请类型镇级供应链

This commit is contained in:
yaooo 2023-08-25 09:45:25 +08:00
parent bbb7f82987
commit 11747f586b

View File

@ -35,6 +35,7 @@ class Merchant extends BaseModel
const TypeTeamServer = 14; //小组服务团
const TypeVillageServer = 15; //村服务团队
const TypeTownServer = 16; //镇服务团队
const TypeTownSupplyChain = 17; //镇级供应链
const TypeMap = [
self::TypeStore => '镇街店铺',
@ -44,10 +45,12 @@ class Merchant extends BaseModel
self::TypeTeamServer => '小组服务团',
self::TypeVillageServer => '村服务团队',
self::TypeTownServer => '镇服务团队',
self::TypeTownSupplyChain => '镇级供应链',
];
const AllowApply = [ //允许申请的类型
self::TypeStore,
self::TypeSupplyChain,
self::TypeTownSupplyChain,
];
const AllowDisplay = [ //允许展示的类型
self::TypeStore,