From 28310fd1eef0a01b8ddea7b1fa55afb6f1805935 Mon Sep 17 00:00:00 2001 From: Joe Date: Wed, 3 Jul 2024 21:16:11 +0800 Subject: [PATCH] up --- src/services/pop-b2b2c/errorController.ts | 30 +- .../pop-b2b2c/pbcProductHotController.ts | 54 +- src/services/pop-b2b2c/typings.d.ts | 603 +++++++++--------- 3 files changed, 334 insertions(+), 353 deletions(-) diff --git a/src/services/pop-b2b2c/errorController.ts b/src/services/pop-b2b2c/errorController.ts index 5f0967b..f29cc7f 100644 --- a/src/services/pop-b2b2c/errorController.ts +++ b/src/services/pop-b2b2c/errorController.ts @@ -2,41 +2,41 @@ /* eslint-disable */ import request from '@/utils/request'; -/** errorHtml GET /error */ -export async function errorHtmlUsingGet(options?: { [key: string]: any }) { - return request('/error', { +/** error GET /error */ +export async function errorUsingGet(options?: { [key: string]: any }) { + return request>('/error', { method: 'GET', ...(options || {}), }); } -/** errorHtml PUT /error */ -export async function errorHtmlUsingPut(options?: { [key: string]: any }) { - return request('/error', { +/** error PUT /error */ +export async function errorUsingPut(options?: { [key: string]: any }) { + return request>('/error', { method: 'PUT', ...(options || {}), }); } -/** errorHtml POST /error */ -export async function errorHtmlUsingPost(options?: { [key: string]: any }) { - return request('/error', { +/** error POST /error */ +export async function errorUsingPost(options?: { [key: string]: any }) { + return request>('/error', { method: 'POST', ...(options || {}), }); } -/** errorHtml DELETE /error */ -export async function errorHtmlUsingDelete(options?: { [key: string]: any }) { - return request('/error', { +/** error DELETE /error */ +export async function errorUsingDelete(options?: { [key: string]: any }) { + return request>('/error', { method: 'DELETE', ...(options || {}), }); } -/** errorHtml PATCH /error */ -export async function errorHtmlUsingPatch(options?: { [key: string]: any }) { - return request('/error', { +/** error PATCH /error */ +export async function errorUsingPatch(options?: { [key: string]: any }) { + return request>('/error', { method: 'PATCH', ...(options || {}), }); diff --git a/src/services/pop-b2b2c/pbcProductHotController.ts b/src/services/pop-b2b2c/pbcProductHotController.ts index 43af505..cbe7672 100644 --- a/src/services/pop-b2b2c/pbcProductHotController.ts +++ b/src/services/pop-b2b2c/pbcProductHotController.ts @@ -123,33 +123,9 @@ export async function typeListUsingPatch(body: API.AjaxRequest, options?: { [key }); } -/** update GET /b2b2c/pbcproducthot/update */ -export async function updateUsingGet(body: API.AjaxRequest, options?: { [key: string]: any }) { - return request('/b2b2c/pbcproducthot/update', { - method: 'GET', - headers: { - 'Content-Type': 'application/json', - }, - data: body, - ...(options || {}), - }); -} - -/** update PUT /b2b2c/pbcproducthot/update */ -export async function updateUsingPut(body: API.AjaxRequest, options?: { [key: string]: any }) { - return request('/b2b2c/pbcproducthot/update', { - method: 'PUT', - headers: { - 'Content-Type': 'application/json', - }, - data: body, - ...(options || {}), - }); -} - -/** update POST /b2b2c/pbcproducthot/update */ -export async function updateUsingPost(body: API.AjaxRequest, options?: { [key: string]: any }) { - return request('/b2b2c/pbcproducthot/update', { +/** 热销商品列表,类型有新品、主推、热销 列表 POST /b2b2c/pbcproducthot/update */ +export async function updateUsingPost(body: API.PbcProductHot, options?: { [key: string]: any }) { + return request('/b2b2c/pbcproducthot/update', { method: 'POST', headers: { 'Content-Type': 'application/json', @@ -158,27 +134,3 @@ export async function updateUsingPost(body: API.AjaxRequest, options?: { [key: s ...(options || {}), }); } - -/** update DELETE /b2b2c/pbcproducthot/update */ -export async function updateUsingDelete(body: API.AjaxRequest, options?: { [key: string]: any }) { - return request('/b2b2c/pbcproducthot/update', { - method: 'DELETE', - headers: { - 'Content-Type': 'application/json', - }, - data: body, - ...(options || {}), - }); -} - -/** update PATCH /b2b2c/pbcproducthot/update */ -export async function updateUsingPatch(body: API.AjaxRequest, options?: { [key: string]: any }) { - return request('/b2b2c/pbcproducthot/update', { - method: 'PATCH', - headers: { - 'Content-Type': 'application/json', - }, - data: body, - ...(options || {}), - }); -} diff --git a/src/services/pop-b2b2c/typings.d.ts b/src/services/pop-b2b2c/typings.d.ts index ad425f1..0608469 100644 --- a/src/services/pop-b2b2c/typings.d.ts +++ b/src/services/pop-b2b2c/typings.d.ts @@ -1,7 +1,7 @@ declare namespace API { type agreeMemberApplicationUsingGETParams = { /** businessUserId */ - businessUserId: string; + businessUserId: number; }; type AjaxRequest = { @@ -169,7 +169,7 @@ declare namespace API { }; type AjaxResultLong_ = { - data?: string; + data?: number; retcode?: number; retmsg?: string; }; @@ -290,46 +290,46 @@ declare namespace API { type approvalSignYUsingGETParams = { /** pbcId */ - pbcId: string; + pbcId: number; }; type businessAdminDeleteUserMemberUsingGETParams = { /** pbcId */ - pbcId: string; + pbcId: number; }; type buyerDeleteBusinessRecordUsingGETParams = { /** pbcId */ - pbcId: string; + pbcId: number; }; type categoryInfoUsingGETParams = { /** id */ - id: string; + id: number; }; type changeProductStateForAdminUsingGETParams = { /** pcbId */ - pcbId: string; + pcbId: number; /** state */ state: number; }; type changeProductStateUsingGETParams = { /** pcbId */ - pcbId: string; + pcbId: number; /** state */ state: number; }; type changeUnreadStateUsingGETParams = { /** businessId */ - businessId: string; + businessId: number; }; type changeUserDefaultBusinessUsingGETParams = { /** businessUserId */ - businessUserId: string; + businessUserId: number; }; type checkEmailVerificationCodeUsingGETParams = { @@ -341,27 +341,27 @@ declare namespace API { type checkMemberShipUsingGETParams = { /** businessId */ - businessId: string; + businessId: number; }; type checkUserCollectExistUsingGETParams = { /** productId */ - productId: string; + productId: number; }; type deleteProductUsingGETParams = { /** pcbId */ - pcbId: string; + pcbId: number; }; type deleteRoleUsingPOSTParams = { /** roleId */ - roleId: string; + roleId: number; }; type deleteUserMessageUsingGETParams = { /** id */ - id: string; + id: number; }; type FilterVO = { @@ -375,7 +375,7 @@ declare namespace API { type getBusinessImageUsingGETParams = { /** businessId */ - businessId: string; + businessId: number; }; type getEmailVerificationCodeUsingGETParams = { @@ -385,49 +385,49 @@ declare namespace API { type getMessageDetailUsingGETParams = { /** id */ - id: string; + id: number; }; type getPbcBusinessByIdUsingPOSTParams = { /** pbcId */ - pbcId: string; + pbcId: number; }; type getProductByQrCodeUsingGETParams = { /** productId */ - productId: string; + productId: number; /** userId */ - userId: string; + userId: number; }; type getProductImageUsingGETParams = { /** productId */ - productId: string; + productId: number; }; type getRecordByBusinessIdAdminUsingGETParams = { /** businessId */ - businessId: string; + businessId: number; }; type getRecordByBusinessIdUsingGETParams = { /** businessId */ - businessId: string; + businessId: number; }; type getRecordByL3CategoryIdUsingGETParams = { /** l3CategoryId */ - l3CategoryId: string; + l3CategoryId: number; }; type getTeamRecordByIdUsingGETParams = { /** teamId */ - teamId: string; + teamId: number; }; type getUserRecordByIdUsingGETParams = { /** id */ - id: string; + id: number; }; type getVerificationCodeUsingGETParams = { @@ -442,7 +442,7 @@ declare namespace API { type gradeInfoUsingPOSTParams = { /** id */ - id: string; + id: number; }; type headFileUploadUsingDELETEParams = { @@ -503,83 +503,83 @@ declare namespace API { }; type IPagePbcBusiness_ = { - current?: string; - pages?: string; + current?: number; + pages?: number; records?: PbcBusiness[]; - size?: string; - total?: string; + size?: number; + total?: number; }; type IPagePbcBusinessApproval_ = { - current?: string; - pages?: string; + current?: number; + pages?: number; records?: PbcBusinessApproval[]; - size?: string; - total?: string; + size?: number; + total?: number; }; type IPagePbcBusinessTeamVO_ = { - current?: string; - pages?: string; + current?: number; + pages?: number; records?: PbcBusinessTeamVO[]; - size?: string; - total?: string; + size?: number; + total?: number; }; type IPagePbcProductVO_ = { - current?: string; - pages?: string; + current?: number; + pages?: number; records?: PbcProductVO[]; - size?: string; - total?: string; + size?: number; + total?: number; }; type IPagePbcRole_ = { - current?: string; - pages?: string; + current?: number; + pages?: number; records?: PbcRole[]; - size?: string; - total?: string; + size?: number; + total?: number; }; type IPagePbcUserBusiness_ = { - current?: string; - pages?: string; + current?: number; + pages?: number; records?: PbcUserBusiness_[]; - size?: string; - total?: string; + size?: number; + total?: number; }; type IPagePbcUserCollect_ = { - current?: string; - pages?: string; + current?: number; + pages?: number; records?: PbcUserCollect[]; - size?: string; - total?: string; + size?: number; + total?: number; }; type IPagePbcUserMessage_ = { - current?: string; - pages?: string; + current?: number; + pages?: number; records?: PbcUserMessage[]; - size?: string; - total?: string; + size?: number; + total?: number; }; type IPagePbcUsers_ = { - current?: string; - pages?: string; + current?: number; + pages?: number; records?: PbcUsers[]; - size?: string; - total?: string; + size?: number; + total?: number; }; type IPagePbcVipGrade_ = { - current?: string; - pages?: string; + current?: number; + pages?: number; records?: PbcVipGrade[]; - size?: string; - total?: string; + size?: number; + total?: number; }; type JSONObject = true; @@ -591,7 +591,7 @@ declare namespace API { type listTreeUsingGETParams = { /** pbcBusinessId */ - pbcBusinessId: string; + pbcBusinessId: number; /** pbcUserType */ pbcUserType: number; /** type */ @@ -679,7 +679,7 @@ declare namespace API { type moveProductHotRecordUsingGETParams = { /** hotProductId */ - hotProductId: string; + hotProductId: number; /** type */ type: string; }; @@ -691,60 +691,60 @@ declare namespace API { type PagePbcBusiness_ = { countId?: string; - current?: string; - maxLimit?: string; + current?: number; + maxLimit?: number; optimizeCountSql?: boolean; orders?: OrderItem[]; - pages?: string; + pages?: number; records?: PbcBusiness[]; searchCount?: boolean; - size?: string; - total?: string; + size?: number; + total?: number; }; type PagePbcBusinessApproval_ = { countId?: string; - current?: string; - maxLimit?: string; + current?: number; + maxLimit?: number; optimizeCountSql?: boolean; orders?: OrderItem[]; - pages?: string; + pages?: number; records?: PbcBusinessApproval[]; searchCount?: boolean; - size?: string; - total?: string; + size?: number; + total?: number; }; type PagePbcUserMessage_ = { countId?: string; - current?: string; - maxLimit?: string; + current?: number; + maxLimit?: number; optimizeCountSql?: boolean; orders?: OrderItem[]; - pages?: string; + pages?: number; records?: PbcUserMessage[]; searchCount?: boolean; - size?: string; - total?: string; + size?: number; + total?: number; }; type PagePbcUsers_ = { countId?: string; - current?: string; - maxLimit?: string; + current?: number; + maxLimit?: number; optimizeCountSql?: boolean; orders?: OrderItem[]; - pages?: string; + pages?: number; records?: PbcUsers[]; searchCount?: boolean; - size?: string; - total?: string; + size?: number; + total?: number; }; type PageVO = { - current?: string; + current?: number; filters?: FilterVO[]; - pageSize?: string; + pageSize?: number; sort?: string; sortField?: string; }; @@ -770,13 +770,13 @@ declare namespace API { /** 创建时间 */ pbcCreateAt?: string; /** 创建人 */ - pbcCreateBy?: string; + pbcCreateBy?: number; /** 创建人 */ pbcCreateByUserName?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 父级id */ - pbcParentId?: string; + pbcParentId?: number; /** 权限 */ pbcPermission?: string; /** 状态,0是删除,1是正常,2是作废 */ @@ -784,7 +784,7 @@ declare namespace API { /** 更新时间 */ pbcUpdateAt?: string; /** 更新人 */ - pbcUpdateBy?: string; + pbcUpdateBy?: number; /** 更新人 */ pbcUpdateByUserName?: string; /** 对应url */ @@ -854,11 +854,11 @@ declare namespace API { /** 创建时间 */ pbcCreateAt?: string; /** 创建人 */ - pbcCreateBy?: string; + pbcCreateBy?: number; /** 创建人 */ pbcCreateByUserName?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 状态,0是删除,1是正常,2是作废 */ pbcState?: number; /** 社会统一信用代码 */ @@ -866,7 +866,7 @@ declare namespace API { /** 更新时间 */ pbcUpdateAt?: string; /** 更新人 */ - pbcUpdateBy?: string; + pbcUpdateBy?: number; /** 更新人 */ pbcUpdateByUserName?: string; }; @@ -929,13 +929,13 @@ declare namespace API { /** 创建时间 */ pbcCreateAt?: string; /** 创建人 */ - pbcCreateBy?: string; + pbcCreateBy?: number; /** 创建人 */ pbcCreateByUserName?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 商户id */ - pbcProductBusinessId?: string; + pbcProductBusinessId?: number; /** 状态,0是删除,1是正常,2是作废 */ pbcState?: number; /** 社会统一信用代码 */ @@ -943,7 +943,7 @@ declare namespace API { /** 更新时间 */ pbcUpdateAt?: string; /** 更新人 */ - pbcUpdateBy?: string; + pbcUpdateBy?: number; /** 更新人 */ pbcUpdateByUserName?: string; }; @@ -1010,11 +1010,11 @@ declare namespace API { /** 创建时间 */ pbcCreateAt?: string; /** 创建人 */ - pbcCreateBy?: string; + pbcCreateBy?: number; /** 创建人 */ pbcCreateByUserName?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 商户id */ pbcProductBusinessId?: string; /** 状态 */ @@ -1024,7 +1024,7 @@ declare namespace API { /** 更新时间 */ pbcUpdateAt?: string; /** 更新人 */ - pbcUpdateBy?: string; + pbcUpdateBy?: number; /** 更新人 */ pbcUpdateByUserName?: string; }; @@ -1065,16 +1065,16 @@ declare namespace API { /** 商户省份 */ pbcBusinessProvince?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; }; type PbcBusinessIndexDTO = { pbcBusinessCode?: string; - pbcId?: string; + pbcId?: number; /** 来源:微信分享,链接、二维码 */ pbcSourceType?: string; /** 分享人的id */ - shareUserId?: string; + shareUserId?: number; }; type PbcBusinessPageDTO = { @@ -1095,7 +1095,7 @@ declare namespace API { /** 商户类别 */ pbcBusinessType?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 状态 */ pbcState?: number; /** 模糊搜索条件,可以是商户名称、商户联系人、商户联系人电话 */ @@ -1129,12 +1129,12 @@ declare namespace API { /** 创建时间 */ pbcCreateAt?: string; /** 创建人 */ - pbcCreateBy?: string; + pbcCreateBy?: number; /** 创建人 */ pbcCreateByUserName?: string; pbcExampleImage?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; pbcQrCodeTextSize?: number; pbcQrCodeTextX?: number; pbcQrCodeTextY?: number; @@ -1145,7 +1145,7 @@ declare namespace API { /** 更新时间 */ pbcUpdateAt?: string; /** 更新人 */ - pbcUpdateBy?: string; + pbcUpdateBy?: number; /** 更新人 */ pbcUpdateByUserName?: string; }; @@ -1153,14 +1153,14 @@ declare namespace API { type PbcBusinessStaticalDTO = { /** 按天:1,按月:2 */ pbcQueryType?: number; - pbcUserId?: string; + pbcUserId?: number; }; type PbcBusinessTeam_ = { /** 商户id */ - pbcBusinessId?: string; + pbcBusinessId?: number; /** 当前用户的海报模板 */ - pbcBusinessPostConfigId?: string; + pbcBusinessPostConfigId?: number; /** 角色类型 */ pbcBusinessRole?: string; /** 商家海报地址, 此处为海报链接 */ @@ -1170,30 +1170,30 @@ declare namespace API { /** 创建时间 */ pbcCreateAt?: string; /** 创建人 */ - pbcCreateBy?: string; + pbcCreateBy?: number; /** 创建人 */ pbcCreateByUserName?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 状态,0是删除,1是正常,2是作废 */ pbcState?: number; /** 更新时间 */ pbcUpdateAt?: string; /** 更新人 */ - pbcUpdateBy?: string; + pbcUpdateBy?: number; /** 更新人 */ pbcUpdateByUserName?: string; /** 用户id */ - pbcUserId?: string; + pbcUserId?: number; }; type PbcBusinessTeamDTO = { /** 商户id */ - pbcBusinessId?: string; + pbcBusinessId?: number; /** 角色类型 */ pbcBusinessRole?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 状态,0是删除,1是正常,2是作废 */ pbcState?: number; /** 用户手机号 */ @@ -1210,11 +1210,11 @@ declare namespace API { /** 条数 */ pageSize?: number; /** 商户id */ - pbcBusinessId?: string; + pbcBusinessId?: number; /** 角色类型 */ pbcBusinessRole?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 状态,0是删除,1是正常,2是作废 */ pbcState?: number; /** 用户手机号 */ @@ -1227,15 +1227,15 @@ declare namespace API { type PbcBusinessTeamVO = { /** 商户id */ - pbcBusinessId?: string; + pbcBusinessId?: number; /** 角色类型 */ pbcBusinessRole?: string; /** team主键 */ - pbcId?: string; + pbcId?: number; /** 状态,0是删除,1是正常,2是作废 */ pbcState?: number; /** 用户id */ - pbcUserId?: string; + pbcUserId?: number; /** 用户手机号 */ pbcUserMobile?: string; /** 用户姓名 */ @@ -1246,7 +1246,7 @@ declare namespace API { type PbcBusinessViewCountVO = { pbcBusinessName?: string; - pbcBusinessVisitCount?: string; + pbcBusinessVisitCount?: number; }; type PbcBusinessViewStaticalVO = { @@ -1262,7 +1262,7 @@ declare namespace API { /** 类目名称 */ pbcCategoryName?: string; /** 父级类目id,没有就填写0 */ - pbcCategoryParentId?: string; + pbcCategoryParentId?: number; /** 父级类目名称 */ pbcCategoryParentName?: string; /** 类目排序 */ @@ -1270,17 +1270,17 @@ declare namespace API { /** 创建时间 */ pbcCreateAt?: string; /** 创建人 */ - pbcCreateBy?: string; + pbcCreateBy?: number; /** 创建人 */ pbcCreateByUserName?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 状态,0是删除,1是正常,2是作废 */ pbcState?: number; /** 更新时间 */ pbcUpdateAt?: string; /** 更新人 */ - pbcUpdateBy?: string; + pbcUpdateBy?: number; /** 更新人 */ pbcUpdateByUserName?: string; }; @@ -1298,26 +1298,26 @@ declare namespace API { /** 类目名称,模糊搜索 */ pbcCategoryName?: string; /** 父级类目id,没有就填写0 */ - pbcCategoryParentId?: string; + pbcCategoryParentId?: number; /** 主键 */ - pbcId?: string; + pbcId?: number; }; type PbcCommonData = { /** 值列表 */ commonDataValueList?: PbcCommonDataValue[]; /** 三级类别id */ - pbcCategoryId?: string; + pbcCategoryId?: number; /** 三级类别名称 */ pbcCategoryName?: string; /** 创建时间 */ pbcCreateAt?: string; /** 创建人 */ - pbcCreateBy?: string; + pbcCreateBy?: number; /** 创建人 */ pbcCreateByUserName?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 排序 */ pbcSort?: number; /** 状态,0是删除,1是正常,2是作废 */ @@ -1333,22 +1333,22 @@ declare namespace API { /** 更新时间 */ pbcUpdateAt?: string; /** 更新人 */ - pbcUpdateBy?: string; + pbcUpdateBy?: number; /** 更新人 */ pbcUpdateByUserName?: string; }; type PbcCommonDataValue = { /** 元数据id */ - pbcCommonDataId?: string; + pbcCommonDataId?: number; /** 创建时间 */ pbcCreateAt?: string; /** 创建人 */ - pbcCreateBy?: string; + pbcCreateBy?: number; /** 创建人 */ pbcCreateByUserName?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 排序 */ pbcSort?: number; /** 状态,0是删除,1是正常,2是作废 */ @@ -1358,7 +1358,7 @@ declare namespace API { /** 更新时间 */ pbcUpdateAt?: string; /** 更新人 */ - pbcUpdateBy?: string; + pbcUpdateBy?: number; /** 更新人 */ pbcUpdateByUserName?: string; }; @@ -1373,17 +1373,17 @@ declare namespace API { /** 创建时间 */ pbcCreateAt?: string; /** 创建人 */ - pbcCreateBy?: string; + pbcCreateBy?: number; /** 创建人 */ pbcCreateByUserName?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 状态,0是删除,1是正常,2是作废 */ pbcState?: number; /** 更新时间 */ pbcUpdateAt?: string; /** 更新人 */ - pbcUpdateBy?: string; + pbcUpdateBy?: number; /** 更新人 */ pbcUpdateByUserName?: string; }; @@ -1394,7 +1394,7 @@ declare namespace API { endDate?: string; /** 登录后的token */ loginToken?: string; - pbcCategoryType?: string; + pbcCategoryType?: number; pbcQueryType?: number; startDate?: string; }; @@ -1403,48 +1403,48 @@ declare namespace API { /** 图片地址,不传默认使用商户第一张图片 */ imageUrl?: string; /** 海报配置id,不传默认用第一个 */ - pbcBusinessPostConfigId?: string; + pbcBusinessPostConfigId?: number; }; type PbcImageSearchDTO = { - pbcBusinessId?: string; + pbcBusinessId?: number; pbcImageUrl?: string; }; type PbcInteractStaticalVO = { - pbcColectNumber?: string; - pbcViewTotalNumber?: string; + pbcColectNumber?: number; + pbcViewTotalNumber?: number; }; type PbcProduct = { /** 商户id */ - pbcBusinessId?: string; + pbcBusinessId?: number; /** 创建时间 */ pbcCreateAt?: string; /** 创建人 */ - pbcCreateBy?: string; + pbcCreateBy?: number; /** 创建人 */ pbcCreateByUserName?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 0代表对业务员商品私密,1代表对业务员商品公开 */ pbcPrivateProductForBusiness?: number; /** 审核失败理由 */ pbcProductAuditFailureReason?: string; /** 商品细分类id */ - pbcProductCategoryId?: string; + pbcProductCategoryId?: number; /** 商品细分类 */ pbcProductCategoryName?: string; /** 商品编号 */ pbcProductCode?: string; /** 收藏数 */ - pbcProductCollectCount?: string; + pbcProductCollectCount?: number; /** 商品详细 */ pbcProductDetail?: string; /** 商品详情图 */ pbcProductDetailImages?: string; /** 浏览量 */ - pbcProductHot?: string; + pbcProductHot?: number; /** 商品相册图 */ pbcProductImages?: string; /** 产地城市 */ @@ -1456,7 +1456,7 @@ declare namespace API { /** 产地省份编码 */ pbcProductOriginalProvinceCode?: string; /** 商品中类的id */ - pbcProductParentCategoryId?: string; + pbcProductParentCategoryId?: number; /** 商品中类 */ pbcProductParentCategoryName?: string; /** 商品价格 */ @@ -1464,11 +1464,11 @@ declare namespace API { /** 货架号 */ pbcProductShelfNumber?: string; /** 商品库存 */ - pbcProductStock?: string; + pbcProductStock?: number; /** 商品标题 */ pbcProductTitle?: string; /** 商品大类的id */ - pbcProductTopCategoryId?: string; + pbcProductTopCategoryId?: number; /** 商品大类 */ pbcProductTopCategoryName?: string; /** 产品类型:私密PRIVATE、公开PUBLIC */ @@ -1480,13 +1480,13 @@ declare namespace API { /** 更新时间 */ pbcUpdateAt?: string; /** 更新人 */ - pbcUpdateBy?: string; + pbcUpdateBy?: number; /** 更新人 */ pbcUpdateByUserName?: string; }; type PbcProductCollectCountVO = { - pbcProductCollectCount?: string; + pbcProductCollectCount?: number; pbcProductName?: string; }; @@ -1498,21 +1498,21 @@ declare namespace API { /** 颜色图片地址 */ pbcColorImageUrl?: string; /** 规格id */ - pbcCommonDataId?: string; + pbcCommonDataId?: number; /** 输入值 */ pbcCommonDataSystem?: string; /** 规格选值名称 */ pbcCommonDataSystemValue?: string; /** 规格选值id */ - pbcCommonDataValueId?: string; + pbcCommonDataValueId?: number; /** 创建时间 */ pbcCreateAt?: string; /** 创建人 */ - pbcCreateBy?: string; + pbcCreateBy?: number; /** 创建人 */ pbcCreateByUserName?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 排序 */ pbcSort?: number; /** 状态,0是删除,1是正常,2是作废 */ @@ -1524,24 +1524,24 @@ declare namespace API { /** 更新时间 */ pbcUpdateAt?: string; /** 更新人 */ - pbcUpdateBy?: string; + pbcUpdateBy?: number; /** 更新人 */ pbcUpdateByUserName?: string; /** 商品id */ - productId?: string; + productId?: number; /** 缩略图地址 */ thumbnailUrl?: string; }; type PbcProductDTO = { /** 商户id */ - pbcBusinessId?: string; + pbcBusinessId?: number; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 0代表对业务员商品私密,1代表对业务员商品公开 */ pbcPrivateProductForBusiness?: number; /** 商品细分类id */ - pbcProductCategoryId?: string; + pbcProductCategoryId?: number; /** 商品细分类 */ pbcProductCategoryName?: string; /** 商品编号 */ @@ -1561,7 +1561,7 @@ declare namespace API { /** 产地省份编码 */ pbcProductOriginalProvinceCode?: string; /** 商品中类的id */ - pbcProductParentCategoryId?: string; + pbcProductParentCategoryId?: number; /** 商品中类 */ pbcProductParentCategoryName?: string; /** 商品价格 */ @@ -1569,11 +1569,11 @@ declare namespace API { /** 货架号 */ pbcProductShelfNumber?: string; /** 商品库存 */ - pbcProductStock?: string; + pbcProductStock?: number; /** 商品标题 */ pbcProductTitle?: string; /** 商品大类的id */ - pbcProductTopCategoryId?: string; + pbcProductTopCategoryId?: number; /** 商品大类 */ pbcProductTopCategoryName?: string; /** 产品类型:私密、公开 */ @@ -1585,16 +1585,45 @@ declare namespace API { /** 商品状态,0删除,1上架,2下架,3审核中 */ pbcState?: number; /** 分享人 */ - pbcUserId?: string; + pbcUserId?: number; /** 接收规格、颜色 */ productCommonDataList?: PbcProductCommonData[]; }; + type PbcProductHot = { + /** 商户id */ + pbcBusinessId?: number; + /** 创建时间 */ + pbcCreateAt?: string; + /** 创建人 */ + pbcCreateBy?: number; + /** 创建人 */ + pbcCreateByUserName?: string; + /** 排序 */ + pbcHotProductSort?: number; + /** 主键 */ + pbcId?: number; + /** 是否置顶,1表示置顶,0或者null表示不置顶 */ + pbcPinState?: number; + /** 商品id */ + pbcProductId?: number; + /** 状态,0是删除,1是正常,2是作废 */ + pbcState?: number; + /** 热销类型 */ + pbcSystemTypeHotProduct?: string; + /** 更新时间 */ + pbcUpdateAt?: string; + /** 更新人 */ + pbcUpdateBy?: number; + /** 更新人 */ + pbcUpdateByUserName?: string; + }; + type PbcProductHotDto = { /** 商户id,查看必须,新增无需传 */ - pbcBusinessId?: string; + pbcBusinessId?: number; /** 商品id列表,新增记录必须 */ - pbcProductIdList?: string[]; + pbcProductIdList?: number[]; /** 热销类型,类型包括new:新品、main:主推、hotSale:热卖,必须 */ pbcSystemTypeHotProduct?: string; }; @@ -1603,15 +1632,15 @@ declare namespace API { /** 当前页 */ current?: number; /** 该字段用于过滤业务员私密商品,前端不要传值 */ - filterBusinessUserId?: string; + filterBusinessUserId?: number; /** 条数 */ pageSize?: number; /** 商户id */ - pbcBusinessId?: string; + pbcBusinessId?: number; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 商品细分类id,也就是三级类目id */ - pbcProductCategoryId?: string; + pbcProductCategoryId?: number; /** 商品细分类,也就是三级类目名称 */ pbcProductCategoryName?: string; /** 产地城市 */ @@ -1642,12 +1671,12 @@ declare namespace API { /** 图片url */ image?: string; /** 商品id */ - productId?: string; + productId?: number; }; type PbcProductViewCountVO = { pbcProductName?: string; - pbcProductVisitCount?: string; + pbcProductVisitCount?: number; }; type PbcProductViewStaticalVO = { @@ -1664,35 +1693,35 @@ declare namespace API { /** 商户手机号 */ pbcBusinessContactMobile?: string; /** 商户id */ - pbcBusinessId?: string; + pbcBusinessId?: number; /** 商户名称 */ pbcBusinessName?: string; /** 创建时间 */ pbcCreateAt?: string; /** 创建人 */ - pbcCreateBy?: string; + pbcCreateBy?: number; /** 创建人 */ pbcCreateByUserName?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 0代表对业务员商品私密,1代表对业务员商品公开 */ pbcPrivateProductForBusiness?: number; /** 审核失败理由 */ pbcProductAuditFailureReason?: string; /** 商品细分类id */ - pbcProductCategoryId?: string; + pbcProductCategoryId?: number; /** 商品细分类 */ pbcProductCategoryName?: string; /** 商品编号 */ pbcProductCode?: string; /** 收藏数 */ - pbcProductCollectCount?: string; + pbcProductCollectCount?: number; /** 商品详细 */ pbcProductDetail?: string; /** 商品详情图 */ pbcProductDetailImages?: string; /** 浏览量 */ - pbcProductHot?: string; + pbcProductHot?: number; /** 商品相册图 */ pbcProductImages?: string; /** 产地城市 */ @@ -1704,7 +1733,7 @@ declare namespace API { /** 产地省份编码 */ pbcProductOriginalProvinceCode?: string; /** 商品中类的id */ - pbcProductParentCategoryId?: string; + pbcProductParentCategoryId?: number; /** 商品中类 */ pbcProductParentCategoryName?: string; /** 商品价格 */ @@ -1712,11 +1741,11 @@ declare namespace API { /** 货架号 */ pbcProductShelfNumber?: string; /** 商品库存 */ - pbcProductStock?: string; + pbcProductStock?: number; /** 商品标题 */ pbcProductTitle?: string; /** 商品大类的id */ - pbcProductTopCategoryId?: string; + pbcProductTopCategoryId?: number; /** 商品大类 */ pbcProductTopCategoryName?: string; /** 产品类型:私密PRIVATE、公开PUBLIC */ @@ -1728,7 +1757,7 @@ declare namespace API { /** 更新时间 */ pbcUpdateAt?: string; /** 更新人 */ - pbcUpdateBy?: string; + pbcUpdateBy?: number; /** 更新人 */ pbcUpdateByUserName?: string; /** 规格列表,查询返回时,与颜色列表分开 */ @@ -1736,25 +1765,25 @@ declare namespace API { }; type PbcRegisterStaticalVO = { - businessNumber?: string; - vipNumber?: string; + businessNumber?: number; + vipNumber?: number; }; type PbcRole = { /** 创建时间 */ pbcCreateAt?: string; /** 创建人 */ - pbcCreateBy?: string; + pbcCreateBy?: number; /** 创建人 */ pbcCreateByUserName?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 状态,0是删除,1是正常,2是作废 */ pbcState?: number; /** 更新时间 */ pbcUpdateAt?: string; /** 更新人 */ - pbcUpdateBy?: string; + pbcUpdateBy?: number; /** 更新人 */ pbcUpdateByUserName?: string; /** 角色编号 */ @@ -1767,7 +1796,7 @@ declare namespace API { /** 权限 */ authorities?: PbcAuthority[]; /** 权限id */ - authorityIds?: string[]; + authorityIds?: number[]; /** 当前页 */ current?: number; /** 条数 */ @@ -1775,17 +1804,17 @@ declare namespace API { /** 创建时间 */ pbcCreateAt?: string; /** 创建人 */ - pbcCreateBy?: string; + pbcCreateBy?: number; /** 创建人 */ pbcCreateByUserName?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 状态,0是删除,1是正常,2是作废 */ pbcState?: number; /** 更新时间 */ pbcUpdateAt?: string; /** 更新人 */ - pbcUpdateBy?: string; + pbcUpdateBy?: number; /** 更新人 */ pbcUpdateByUserName?: string; /** 角色编号 */ @@ -1801,7 +1830,7 @@ declare namespace API { type PbcSearchKeyDTO = { /** 商户id */ - businessId?: string; + businessId?: number; /** 结束时间 */ endTime?: string; /** 开始时间 */ @@ -1819,21 +1848,21 @@ declare namespace API { /** 商户手机号 */ pbcBusinessContactMobile?: string; /** 商户id */ - pbcBusinessId?: string; + pbcBusinessId?: number; /** 商户logo */ pbcBusinessLogo?: string; /** 商户名称 */ pbcBusinessName?: string; /** 商家员工id */ - pbcBusinessUserId?: string; + pbcBusinessUserId?: number; /** 创建时间 */ pbcCreateAt?: string; /** 创建人 */ - pbcCreateBy?: string; + pbcCreateBy?: number; /** 创建人 */ pbcCreateByUserName?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 是否是默认的,1是默认,0不是默认 */ pbcIsDefault?: number; /** 状态,0是删除,1是正常,2是作废 */ @@ -1841,14 +1870,14 @@ declare namespace API { /** 更新时间 */ pbcUpdateAt?: string; /** 更新人 */ - pbcUpdateBy?: string; + pbcUpdateBy?: number; /** 更新人 */ pbcUpdateByUserName?: string; /** 用户id */ - pbcUserId?: string; + pbcUserId?: number; pbcUsers?: PbcUsersVO; /** 用户等级id */ - pbcVipGradeId?: string; + pbcVipGradeId?: number; /** 用户等级名称 */ pbcVipGradeName?: string; }; @@ -1859,7 +1888,7 @@ declare namespace API { /** 条数 */ pageSize?: number; /** 商户id,不用传 */ - pbcBusinessId?: string; + pbcBusinessId?: number; /** 状态,0是待通过,1是通过 */ pbcState?: number; /** 用户昵称或者手机号,模糊搜索 */ @@ -1868,7 +1897,7 @@ declare namespace API { type PbcUserBusinessReturnVO = { /** 默认商户id */ - pbcBusinessId?: string; + pbcBusinessId?: number; /** 用户商户列表 */ pbcUserBusinessList?: PbcUserBusiness_[]; }; @@ -1884,29 +1913,29 @@ declare namespace API { /** 创建时间 */ pbcCreateAt?: string; /** 创建人 */ - pbcCreateBy?: string; + pbcCreateBy?: number; /** 创建人 */ pbcCreateByUserName?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 角色名称 */ - pbcProductId?: string; + pbcProductId?: number; pbcProductVO?: PbcProductVO; /** 状态,0是删除,1是正常,2是作废 */ pbcState?: number; /** 更新时间 */ pbcUpdateAt?: string; /** 更新人 */ - pbcUpdateBy?: string; + pbcUpdateBy?: number; /** 更新人 */ pbcUpdateByUserName?: string; /** 用户id */ - pbcUserId?: string; + pbcUserId?: number; }; type PbcUserCollectDTO = { - pbcBusinessId?: string; - pbcProductId?: string; + pbcBusinessId?: number; + pbcProductId?: number; }; type PbcUserCollectPageDTO = { @@ -1921,7 +1950,7 @@ declare namespace API { /** 状态,1是上架,2是下架,按道理用户收藏的商品只有这两种状态 */ pbcState?: number; /** 用户id,不用传 */ - pbcUserId?: string; + pbcUserId?: number; /** 排序方式 asc desc,可以按照收藏时间排序 */ sort?: string; }; @@ -1932,7 +1961,7 @@ declare namespace API { /** 条数 */ pageSize?: number; /** 商户id */ - pbcBusinessId?: string; + pbcBusinessId?: number; pbcBusinessInfo?: PbcBusiness; /** 商户logo */ pbcBusinessLogo?: string; @@ -1942,17 +1971,17 @@ declare namespace API { /** 创建时间 */ pbcCreateAt?: string; /** 创建人 */ - pbcCreateBy?: string; + pbcCreateBy?: number; /** 创建人 */ pbcCreateByUserName?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 状态,0是删除,1是正常,2是作废 */ pbcState?: number; /** 更新时间 */ pbcUpdateAt?: string; /** 更新人 */ - pbcUpdateBy?: string; + pbcUpdateBy?: number; /** 更新人 */ pbcUpdateByUserName?: string; /** 用户邮箱 */ @@ -1968,7 +1997,7 @@ declare namespace API { /** 用户密码 */ pbcUserPassword?: string; /** 角色id */ - pbcUserRole?: string; + pbcUserRole?: number; /** 角色名称 */ pbcUserRoleName?: string; /** 性别,0表示男性,1表示女性 */ @@ -1976,7 +2005,7 @@ declare namespace API { /** 用户来源渠道 */ pbcUserSourceType?: string; /** 用户来源绑定的分享源 */ - pbcUserSourceUserId?: string; + pbcUserSourceUserId?: number; /** 用户分享源的昵称 */ pbcUserSourceUserNickName?: string; /** 0表示商户,1表示会员, 2管理员 */ @@ -2000,7 +2029,7 @@ declare namespace API { /** 存放回复 */ children?: PbcUserMessage[]; /** 商户id */ - pbcBusinessId?: string; + pbcBusinessId?: number; /** 商户名称 */ pbcBusinessName?: string; /** 商家查看状态,0表示未读,1表示已读 */ @@ -2008,24 +2037,24 @@ declare namespace API { /** 创建时间 */ pbcCreateAt?: string; /** 创建人 */ - pbcCreateBy?: string; + pbcCreateBy?: number; /** 创建人 */ pbcCreateByUserName?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 留言内容 */ pbcMessage?: string; /** 留言图片 */ pbcMessageImages?: string; /** 主题id */ - pbcMessageMainId?: string; + pbcMessageMainId?: number; pbcProduct?: PbcProduct; /** 商品id */ - pbcProductId?: string; + pbcProductId?: number; /** 回复状态,0表示未被商家回复,1表示已被商家回复 */ pbcReplyState?: number; /** 回复的id */ - pbcReplyToId?: string; + pbcReplyToId?: number; /** 0回复的主题,1回复某条回复 */ pbcReplyType?: number; /** 状态,0是删除,1是正常,2是作废 */ @@ -2035,11 +2064,11 @@ declare namespace API { /** 更新时间 */ pbcUpdateAt?: string; /** 更新人 */ - pbcUpdateBy?: string; + pbcUpdateBy?: number; /** 更新人 */ pbcUpdateByUserName?: string; /** 用户id */ - pbcUserId?: string; + pbcUserId?: number; /** 用户头像 */ pbcUserImage?: string; /** 用户手机号 */ @@ -2050,25 +2079,25 @@ declare namespace API { type PbcUserMessage_ = { /** 商户id,必须有的 */ - pbcBusinessId?: string; + pbcBusinessId?: number; /** 创建时间 */ pbcCreateAt?: string; /** 创建人 */ - pbcCreateBy?: string; + pbcCreateBy?: number; /** 创建人 */ pbcCreateByUserName?: string; /** 主键,前端无需传 */ - pbcId?: string; + pbcId?: number; /** 留言内容,必须 */ pbcMessage?: string; /** 留言图片 */ pbcMessageImages?: string; /** 主题id,主题这里是空,回复必须 */ - pbcMessageMainId?: string; + pbcMessageMainId?: number; /** 商品id */ - pbcProductId?: string; + pbcProductId?: number; /** 回复的id,主题这里是空,回复必须 */ - pbcReplyToId?: string; + pbcReplyToId?: number; /** 0回复的主题,1回复某条回复,回复必须 */ pbcReplyType?: number; /** 状态,0是删除,1是正常,2是作废 */ @@ -2078,11 +2107,11 @@ declare namespace API { /** 更新时间 */ pbcUpdateAt?: string; /** 更新人 */ - pbcUpdateBy?: string; + pbcUpdateBy?: number; /** 更新人 */ pbcUpdateByUserName?: string; /** 用户id,前端无需传 */ - pbcUserId?: string; + pbcUserId?: number; /** 0表示商户,1表示会员, 2管理员,前端无需传 */ pbcUserType?: number; }; @@ -2100,7 +2129,7 @@ declare namespace API { type PbcUserRegisterDTO = { /** 商户id */ - pbcBusinessId?: string; + pbcBusinessId?: number; /** 用户邮箱 */ pbcUserEmail?: string; /** 用户手机号 */ @@ -2110,7 +2139,7 @@ declare namespace API { /** 用户来源渠道 */ pbcUserSourceType?: string; /** 用户来源绑定的分享源 */ - pbcUserSourceUserId?: string; + pbcUserSourceUserId?: number; /** 0表示商户,1表示会员, 2管理员 */ pbcUserType?: number; /** 验证码 */ @@ -2119,7 +2148,7 @@ declare namespace API { type PbcUsers = { /** 商户id */ - pbcBusinessId?: string; + pbcBusinessId?: number; pbcBusinessInfo?: PbcBusiness; /** 商户logo */ pbcBusinessLogo?: string; @@ -2129,17 +2158,17 @@ declare namespace API { /** 创建时间 */ pbcCreateAt?: string; /** 创建人 */ - pbcCreateBy?: string; + pbcCreateBy?: number; /** 创建人 */ pbcCreateByUserName?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 状态,0是删除,1是正常,2是作废 */ pbcState?: number; /** 更新时间 */ pbcUpdateAt?: string; /** 更新人 */ - pbcUpdateBy?: string; + pbcUpdateBy?: number; /** 更新人 */ pbcUpdateByUserName?: string; /** 用户邮箱 */ @@ -2155,7 +2184,7 @@ declare namespace API { /** 用户密码 */ pbcUserPassword?: string; /** 角色id */ - pbcUserRole?: string; + pbcUserRole?: number; /** 角色名称 */ pbcUserRoleName?: string; /** 性别,0表示男性,1表示女性 */ @@ -2163,7 +2192,7 @@ declare namespace API { /** 用户来源渠道 */ pbcUserSourceType?: string; /** 用户来源绑定的分享源 */ - pbcUserSourceUserId?: string; + pbcUserSourceUserId?: number; /** 用户分享源的昵称 */ pbcUserSourceUserNickName?: string; /** 0表示商户,1表示会员, 2管理员 */ @@ -2174,7 +2203,7 @@ declare namespace API { /** 用户权限集 */ currentAuthority?: string[]; /** 商户id */ - pbcBusinessId?: string; + pbcBusinessId?: number; pbcBusinessInfo?: PbcBusiness; /** 商户logo */ pbcBusinessLogo?: string; @@ -2184,17 +2213,17 @@ declare namespace API { /** 创建时间 */ pbcCreateAt?: string; /** 创建人 */ - pbcCreateBy?: string; + pbcCreateBy?: number; /** 创建人 */ pbcCreateByUserName?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 状态,0是删除,1是正常,2是作废 */ pbcState?: number; /** 更新时间 */ pbcUpdateAt?: string; /** 更新人 */ - pbcUpdateBy?: string; + pbcUpdateBy?: number; /** 更新人 */ pbcUpdateByUserName?: string; /** 用户邮箱 */ @@ -2210,7 +2239,7 @@ declare namespace API { /** 用户密码 */ pbcUserPassword?: string; /** 角色id */ - pbcUserRole?: string; + pbcUserRole?: number; /** 角色名称 */ pbcUserRoleName?: string; /** 性别,0表示男性,1表示女性 */ @@ -2218,7 +2247,7 @@ declare namespace API { /** 用户来源渠道 */ pbcUserSourceType?: string; /** 用户来源绑定的分享源 */ - pbcUserSourceUserId?: string; + pbcUserSourceUserId?: number; /** 用户分享源的昵称 */ pbcUserSourceUserNickName?: string; /** 0表示商户,1表示会员, 2管理员 */ @@ -2231,15 +2260,15 @@ declare namespace API { type PbcVipGrade = { /** 商户id */ - pbcBusinessId?: string; + pbcBusinessId?: number; /** 创建时间 */ pbcCreateAt?: string; /** 创建人 */ - pbcCreateBy?: string; + pbcCreateBy?: number; /** 创建人 */ pbcCreateByUserName?: string; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 排序 */ pbcSort?: number; /** 状态,0是删除,1是正常,2是作废 */ @@ -2249,7 +2278,7 @@ declare namespace API { /** 更新时间 */ pbcUpdateAt?: string; /** 更新人 */ - pbcUpdateBy?: string; + pbcUpdateBy?: number; /** 更新人 */ pbcUpdateByUserName?: string; /** vip折扣 */ @@ -2263,64 +2292,64 @@ declare namespace API { }; type PbcVisitStaticalVO = { - pbcLinkNumber?: string; - pbcScanNumber?: string; - pbcShareNumber?: string; + pbcLinkNumber?: number; + pbcScanNumber?: number; + pbcShareNumber?: number; }; type postConfigDetailUsingGETParams = { /** id */ - id: string; + id: number; }; type productDetailForAdminUsingGETParams = { /** productId */ - productId: string; + productId: number; }; type queryAuthorityUsingPOSTParams = { /** roleId */ - roleId: string; + roleId: number; }; type removeCategoryByIdUsingGETParams = { /** id */ - id: string; + id: number; }; type removeGradeByIdUsingPOSTParams = { /** id */ - id: string; + id: number; }; type removeProductHotRecordUsingGETParams = { /** hotProductId */ - hotProductId: string; + hotProductId: number; }; type removeUserCollectByIdUsingGETParams = { /** collectId */ - collectId: string; + collectId: number; }; type removeUserCollectByProductIdUsingGETParams = { /** productId */ - productId: string; + productId: number; }; type resetPasswordUsingGETParams = { /** id */ - id: string; + id: number; }; type resetTeamMemberPasswordUsingGETParams = { /** teamId */ - teamId: string; + teamId: number; }; type saveUserBusinessRecordUsingGETParams = { /** businessId */ - businessId: string; + businessId: number; }; type searchCategoryUsingGETParams = { @@ -2330,33 +2359,33 @@ declare namespace API { type searchUnreadNumUsingGETParams = { /** businessId */ - businessId: string; + businessId: number; }; type updateBusinessRecordLevelUsingGETParams = { /** businessLevel */ businessLevel: string; /** pbcId */ - pbcId: string; + pbcId: number; }; type updateBusinessRecordStateUsingGETParams = { /** pbcId */ - pbcId: string; + pbcId: number; /** state */ state: number; }; type updateCategoryRecordStateUsingGETParams = { /** pbcId */ - pbcId: string; + pbcId: number; /** state */ state: number; }; type updateMemberRecordStateUsingGETParams = { /** pbcId */ - pbcId: string; + pbcId: number; /** state */ state: number; }; @@ -2365,12 +2394,12 @@ declare namespace API { /** state */ state: number; /** teamId */ - teamId: string; + teamId: number; }; type updateUserRecordStateUsingGETParams = { /** pbcId */ - pbcId: string; + pbcId: number; /** state */ state: number; }; @@ -2407,7 +2436,7 @@ declare namespace API { type UserAddDTO = { /** 用户id */ - pbcId?: string; + pbcId?: number; /** 用户手机号 */ pbcUserMobile?: string; /** 用户姓名 */ @@ -2415,7 +2444,7 @@ declare namespace API { /** 用户密码 */ pbcUserPassword?: string; /** 角色id */ - pbcUserRole?: string; + pbcUserRole?: number; /** 角色名称 */ pbcUserRoleName?: string; /** 0表示商户,1表示会员, 2管理员 */ @@ -2424,7 +2453,7 @@ declare namespace API { type UserDTO = { /** 用户id */ - pbcId?: string; + pbcId?: number; /** 用户头像 */ pbcUserImage?: string; /** 用户姓名 */ @@ -2441,19 +2470,19 @@ declare namespace API { /** 条数 */ pageSize?: number; /** 商户id */ - pbcBusinessId?: string; + pbcBusinessId?: number; /** 商户名称 */ pbcBusinessName?: string; /** 商家查看状态,0表示未读,1表示已读 */ pbcBusinessReadState?: number; /** 主键id */ - pbcId?: string; + pbcId?: number; /** 0表示未被商家回复,1表示已被商家回复 */ pbcReplyState?: number; /** 留言标题 */ pbcTitle?: string; /** 用户id */ - pbcUserId?: string; + pbcUserId?: number; /** 用户手机号 */ pbcUserMobile?: string; /** 用户昵称 */ @@ -2466,11 +2495,11 @@ declare namespace API { /** 条数 */ pageSize?: number; /** 主键 */ - pbcId?: string; + pbcId?: number; /** 状态,0是删除,1是正常,2是作废 */ pbcState?: number; /** 角色id */ - pbcUserRole?: string; + pbcUserRole?: number; /** 角色名称 */ pbcUserRoleName?: string; /** 模糊搜索条件,可以是用户姓名、用户电话 */