This commit is contained in:
richboo111
2022-11-14 09:38:59 +08:00
parent 99dfc3f61b
commit d99661fd18
3 changed files with 61 additions and 37 deletions

View File

@@ -45,40 +45,40 @@ func (c *ShopGetStoreListRequest) GetParams() *ShopGetStoreListParam {
}
type ShopGetStoreListParam struct {
// 门店名称集合,不支持模糊
StoreNameList []string `json:"store_name_list"`
// 门店id集合用于查询门店信息
StoreIdList []int64 `json:"store_id_list"`
// 门店编码,开发者自定义
StoreCodeList []string `json:"store_code_list"`
// 绑定状态1绑定中;2绑定成功;3:资质验证中;4账户认证中;5正常营业(c端可下单)
State int64 `json:"state"`
// poi审核状态0无提审;1审核中;2审核成功;3驳回
PoiAuditState []int64 `json:"poi_audit_state"`
// 省
Province string `json:"province"`
// 市
City string `json:"city"`
// 区
District string `json:"district"`
// 门店poiId集合
PoiIdList []int64 `json:"poi_id_list"`
// 门店名称,支持模糊查询
NameFuzzy string `json:"name_fuzzy"`
// 门店编码,支持模糊查询
StoreCodeFuzzy string `json:"store_code_fuzzy"`
// 资质审核状态0未提交1审核中2审核通过3驳回
QualState int64 `json:"qual_state"`
// 账户验证状态0未提交1验证中2通过3失败
RemitState int64 `json:"remit_state"`
// 开户状态0未开户;1已开户
OpenAccountState int64 `json:"open_account_state"`
// 是否需要poi审核信息只要审核状态的审核不要传true需要详细的提交信息时传true
IsNeedPoiAuditInfo bool `json:"is_need_poi_audit_info"`
// 是否需要关联的抖店信息只要shopId不要传true需要关联店铺名称等信息时传true
IsNeedRelShopUser bool `json:"is_need_rel_shop_user"`
//// 门店名称集合,不支持模糊
//StoreNameList []string `json:"store_name_list"`
//// 门店id集合用于查询门店信息
//StoreIdList []int64 `json:"store_id_list"`
//// 门店编码,开发者自定义
//StoreCodeList []string `json:"store_code_list"`
//// 绑定状态1绑定中;2绑定成功;3:资质验证中;4账户认证中;5正常营业(c端可下单)
//State int64 `json:"state"`
//// poi审核状态0无提审;1审核中;2审核成功;3驳回
//PoiAuditState []int64 `json:"poi_audit_state"`
//// 省
//Province string `json:"province"`
//// 市
//City string `json:"city"`
//// 区
//District string `json:"district"`
//// 门店poiId集合
//PoiIdList []int64 `json:"poi_id_list"`
//// 门店名称,支持模糊查询
//NameFuzzy string `json:"name_fuzzy"`
//// 门店编码,支持模糊查询
//StoreCodeFuzzy string `json:"store_code_fuzzy"`
//// 资质审核状态0未提交1审核中2审核通过3驳回
//QualState int64 `json:"qual_state"`
//// 账户验证状态0未提交1验证中2通过3失败
//RemitState int64 `json:"remit_state"`
//// 开户状态0未开户;1已开户
//OpenAccountState int64 `json:"open_account_state"`
//// 是否需要poi审核信息只要审核状态的审核不要传true需要详细的提交信息时传true
//IsNeedPoiAuditInfo bool `json:"is_need_poi_audit_info"`
//// 是否需要关联的抖店信息只要shopId不要传true需要关联店铺名称等信息时传true
//IsNeedRelShopUser bool `json:"is_need_rel_shop_user"`
// 第几页(从0开始)
Page int64 `json:"page"`
Page string `json:"page"`
// 每页条数
PageSize int64 `json:"page_size"`
PageSize string `json:"page_size"`
}