|
|
|
@ -168,6 +168,12 @@ declare namespace API {
|
|
|
|
|
retmsg?: string;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
type AjaxResultListPbcCommonDataValue_ = {
|
|
|
|
|
data?: PbcCommonDataValue[];
|
|
|
|
|
retcode?: number;
|
|
|
|
|
retmsg?: string;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
type AjaxResultListPbcProductVO_ = {
|
|
|
|
|
data?: PbcProductVO[];
|
|
|
|
|
retcode?: number;
|
|
|
|
@ -186,6 +192,12 @@ declare namespace API {
|
|
|
|
|
retmsg?: string;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
type AjaxResultListPbcSpecification_ = {
|
|
|
|
|
data?: PbcSpecification[];
|
|
|
|
|
retcode?: number;
|
|
|
|
|
retmsg?: string;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
type AjaxResultListPbcUserMessage_ = {
|
|
|
|
|
data?: PbcUserMessage[];
|
|
|
|
|
retcode?: number;
|
|
|
|
@ -456,6 +468,11 @@ declare namespace API {
|
|
|
|
|
l3CategoryId: number;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
type getSpecificationItemListUsingGETParams = {
|
|
|
|
|
/** specificationId */
|
|
|
|
|
specificationId: number;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
type getTeamRecordByIdUsingGETParams = {
|
|
|
|
|
/** teamId */
|
|
|
|
|
teamId: number;
|
|
|
|
@ -1330,6 +1347,8 @@ declare namespace API {
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
type PbcBusinessViewCountVO = {
|
|
|
|
|
/** 商户id */
|
|
|
|
|
pbcBusinessId?: number;
|
|
|
|
|
/** 商户名称 */
|
|
|
|
|
pbcBusinessName?: string;
|
|
|
|
|
/** 商户浏览量 */
|
|
|
|
@ -1463,13 +1482,15 @@ declare namespace API {
|
|
|
|
|
pbcId?: number;
|
|
|
|
|
/** 排序 */
|
|
|
|
|
pbcSort?: number;
|
|
|
|
|
/** 规格id */
|
|
|
|
|
pbcSpecificationId?: number;
|
|
|
|
|
/** 状态,0是删除,1是正常,2是作废 */
|
|
|
|
|
pbcState?: number;
|
|
|
|
|
/** 输入类型:select , text */
|
|
|
|
|
pbcSystemInputType?: string;
|
|
|
|
|
/** 系统key */
|
|
|
|
|
/** 规格key */
|
|
|
|
|
pbcSystemKey?: string;
|
|
|
|
|
/** 系统名称 */
|
|
|
|
|
/** 规格名称 */
|
|
|
|
|
pbcSystemName?: string;
|
|
|
|
|
/** 系统类型对应前端: 系统定义, 一个用户自定义(暂不考虑) */
|
|
|
|
|
pbcSystemType?: string;
|
|
|
|
@ -1482,8 +1503,6 @@ declare namespace API {
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
type PbcCommonDataValue = {
|
|
|
|
|
/** 元数据id */
|
|
|
|
|
pbcCommonDataId?: number;
|
|
|
|
|
/** 创建时间 */
|
|
|
|
|
pbcCreateAt?: string;
|
|
|
|
|
/** 创建人 */
|
|
|
|
@ -1494,9 +1513,11 @@ declare namespace API {
|
|
|
|
|
pbcId?: number;
|
|
|
|
|
/** 排序 */
|
|
|
|
|
pbcSort?: number;
|
|
|
|
|
/** 规格id */
|
|
|
|
|
pbcSpecificationId?: number;
|
|
|
|
|
/** 状态,0是删除,1是正常,2是作废 */
|
|
|
|
|
pbcState?: number;
|
|
|
|
|
/** 数据值 */
|
|
|
|
|
/** 规格项名称 */
|
|
|
|
|
pbcSystemValue?: string;
|
|
|
|
|
/** 更新时间 */
|
|
|
|
|
pbcUpdateAt?: string;
|
|
|
|
@ -1759,6 +1780,8 @@ declare namespace API {
|
|
|
|
|
businessName?: string;
|
|
|
|
|
/** 收藏次数 */
|
|
|
|
|
pbcProductCollectCount?: number;
|
|
|
|
|
/** 商品id */
|
|
|
|
|
pbcProductId?: number;
|
|
|
|
|
/** 商品名称 */
|
|
|
|
|
pbcProductName?: string;
|
|
|
|
|
};
|
|
|
|
@ -1954,6 +1977,8 @@ declare namespace API {
|
|
|
|
|
businessId?: number;
|
|
|
|
|
/** 商户名称 */
|
|
|
|
|
businessName?: string;
|
|
|
|
|
/** 商品id */
|
|
|
|
|
pbcProductId?: number;
|
|
|
|
|
/** 商品名称 */
|
|
|
|
|
pbcProductName?: string;
|
|
|
|
|
/** 商品浏览次数 */
|
|
|
|
@ -2131,6 +2156,37 @@ declare namespace API {
|
|
|
|
|
pbcSearchWord?: string;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
type PbcSetSpecificationDTO = {
|
|
|
|
|
pbcCategory?: PbcCategory;
|
|
|
|
|
/** 规格列表,规格信息要完整 */
|
|
|
|
|
pbcSpecificationList?: PbcSpecification[];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
type PbcSpecification = {
|
|
|
|
|
/** 创建时间 */
|
|
|
|
|
pbcCreateAt?: string;
|
|
|
|
|
/** 创建人 */
|
|
|
|
|
pbcCreateBy?: number;
|
|
|
|
|
/** 创建人 */
|
|
|
|
|
pbcCreateByUserName?: string;
|
|
|
|
|
/** 主键 */
|
|
|
|
|
pbcId?: number;
|
|
|
|
|
/** 状态,0是删除,1是正常,2是作废 */
|
|
|
|
|
pbcState?: number;
|
|
|
|
|
/** 输入类型:select , text */
|
|
|
|
|
pbcSystemInputType?: string;
|
|
|
|
|
/** 规格key */
|
|
|
|
|
pbcSystemKey?: string;
|
|
|
|
|
/** 规格名称 */
|
|
|
|
|
pbcSystemName?: string;
|
|
|
|
|
/** 更新时间 */
|
|
|
|
|
pbcUpdateAt?: string;
|
|
|
|
|
/** 更新人 */
|
|
|
|
|
pbcUpdateBy?: number;
|
|
|
|
|
/** 更新人 */
|
|
|
|
|
pbcUpdateByUserName?: string;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
type PbcUserBusiness_ = {
|
|
|
|
|
/** 商户手机号 */
|
|
|
|
|
pbcBusinessContactMobile?: string;
|
|
|
|
|