icbuseller

package
v1.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 1, 2021 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Overview

ICBU卖家API model

https://open.taobao.com/API.htm?docId=51234&docType=2

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AlibabaSellerCouponAuthVerifyAPIRequest added in v1.2.0

type AlibabaSellerCouponAuthVerifyAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

优惠券校验 API请求 alibaba.seller.coupon.auth.verify

优惠券校验

func NewAlibabaSellerCouponAuthVerifyRequest

func NewAlibabaSellerCouponAuthVerifyRequest() *AlibabaSellerCouponAuthVerifyAPIRequest

初始化AlibabaSellerCouponAuthVerifyAPIRequest对象

func (AlibabaSellerCouponAuthVerifyAPIRequest) GetApiMethodName added in v1.2.0

func (r AlibabaSellerCouponAuthVerifyAPIRequest) GetApiMethodName() string

IRequest interface 方法, 获取Api method

func (AlibabaSellerCouponAuthVerifyAPIRequest) GetApiParams added in v1.2.0

IRequest interface 方法, 获取API参数

func (AlibabaSellerCouponAuthVerifyAPIRequest) GetCouponSeqNumber added in v1.2.0

func (r AlibabaSellerCouponAuthVerifyAPIRequest) GetCouponSeqNumber() string

CouponSeqNumber Getter

func (AlibabaSellerCouponAuthVerifyAPIRequest) GetServiceCode added in v1.2.0

ServiceCode Getter

func (*AlibabaSellerCouponAuthVerifyAPIRequest) SetCouponSeqNumber added in v1.2.0

func (r *AlibabaSellerCouponAuthVerifyAPIRequest) SetCouponSeqNumber(_couponSeqNumber string) error

CouponSeqNumber Setter 卡券验证码

func (*AlibabaSellerCouponAuthVerifyAPIRequest) SetServiceCode added in v1.2.0

func (r *AlibabaSellerCouponAuthVerifyAPIRequest) SetServiceCode(_serviceCode string) error

ServiceCode Setter 服务代码

type AlibabaSellerCouponAuthVerifyAPIResponse

type AlibabaSellerCouponAuthVerifyAPIResponse struct {
	model.CommonResponse
	AlibabaSellerCouponAuthVerifyAPIResponseModel
}

优惠券校验 API返回值 alibaba.seller.coupon.auth.verify

优惠券校验

type AlibabaSellerCouponAuthVerifyAPIResponseModel added in v1.2.0

type AlibabaSellerCouponAuthVerifyAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_seller_coupon_auth_verify_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 获取是否验证成功
	Result *AlibabaSellerCouponAuthVerifyResultDto `json:"result,omitempty" xml:"result,omitempty"`
}

优惠券校验 成功返回结果

type AlibabaSellerCouponAuthVerifyResultDto

type AlibabaSellerCouponAuthVerifyResultDto struct {
	// 是否正常返回
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
	// 是否验证通过
	Dto bool `json:"dto,omitempty" xml:"dto,omitempty"`
	// 返回码
	ReturnCode int64 `json:"return_code,omitempty" xml:"return_code,omitempty"`
	// 验证失败结果
	ExecDescription string `json:"exec_description,omitempty" xml:"exec_description,omitempty"`
}

AlibabaSellerCouponAuthVerifyResultDto

type AlibabaSellerVendorOrderDetailAPIRequest added in v1.2.0

type AlibabaSellerVendorOrderDetailAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

国际站服务市场订单详情接口 API请求 alibaba.seller.vendor.order.detail

国际站服务市场订单列表接口

func NewAlibabaSellerVendorOrderDetailRequest

func NewAlibabaSellerVendorOrderDetailRequest() *AlibabaSellerVendorOrderDetailAPIRequest

初始化AlibabaSellerVendorOrderDetailAPIRequest对象

func (AlibabaSellerVendorOrderDetailAPIRequest) GetApiMethodName added in v1.2.0

func (r AlibabaSellerVendorOrderDetailAPIRequest) GetApiMethodName() string

IRequest interface 方法, 获取Api method

func (AlibabaSellerVendorOrderDetailAPIRequest) GetApiParams added in v1.2.0

IRequest interface 方法, 获取API参数

func (AlibabaSellerVendorOrderDetailAPIRequest) GetOrderNo added in v1.2.0

OrderNo Getter

func (*AlibabaSellerVendorOrderDetailAPIRequest) SetOrderNo added in v1.2.0

func (r *AlibabaSellerVendorOrderDetailAPIRequest) SetOrderNo(_orderNo string) error

OrderNo Setter 订单编号

type AlibabaSellerVendorOrderDetailAPIResponse

type AlibabaSellerVendorOrderDetailAPIResponse struct {
	model.CommonResponse
	AlibabaSellerVendorOrderDetailAPIResponseModel
}

国际站服务市场订单详情接口 API返回值 alibaba.seller.vendor.order.detail

国际站服务市场订单列表接口

type AlibabaSellerVendorOrderDetailAPIResponseModel added in v1.2.0

type AlibabaSellerVendorOrderDetailAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_seller_vendor_order_detail_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 接口返回对象
	Result *AlibabaSellerVendorOrderDetailResultDto `json:"result,omitempty" xml:"result,omitempty"`
}

国际站服务市场订单详情接口 成功返回结果

type AlibabaSellerVendorOrderDetailResultDto

type AlibabaSellerVendorOrderDetailResultDto struct {
	// 接口返回对象
	Dto *OpenTradeDetailDto `json:"dto,omitempty" xml:"dto,omitempty"`
}

AlibabaSellerVendorOrderDetailResultDto

type AlibabaSellerVendorOrderListAPIRequest added in v1.2.0

type AlibabaSellerVendorOrderListAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

国际站服务市场订单列表接口 API请求 alibaba.seller.vendor.order.list

返回服务商在服务市场的客户订单

func NewAlibabaSellerVendorOrderListRequest

func NewAlibabaSellerVendorOrderListRequest() *AlibabaSellerVendorOrderListAPIRequest

初始化AlibabaSellerVendorOrderListAPIRequest对象

func (AlibabaSellerVendorOrderListAPIRequest) GetApiMethodName added in v1.2.0

func (r AlibabaSellerVendorOrderListAPIRequest) GetApiMethodName() string

IRequest interface 方法, 获取Api method

func (AlibabaSellerVendorOrderListAPIRequest) GetApiParams added in v1.2.0

IRequest interface 方法, 获取API参数

func (AlibabaSellerVendorOrderListAPIRequest) GetQueryTradeDto added in v1.2.0

QueryTradeDto Getter

func (*AlibabaSellerVendorOrderListAPIRequest) SetQueryTradeDto added in v1.2.0

func (r *AlibabaSellerVendorOrderListAPIRequest) SetQueryTradeDto(_queryTradeDto *QueryTradeDto) error

QueryTradeDto Setter 查询参数

type AlibabaSellerVendorOrderListAPIResponse

type AlibabaSellerVendorOrderListAPIResponse struct {
	model.CommonResponse
	AlibabaSellerVendorOrderListAPIResponseModel
}

国际站服务市场订单列表接口 API返回值 alibaba.seller.vendor.order.list

返回服务商在服务市场的客户订单

type AlibabaSellerVendorOrderListAPIResponseModel added in v1.2.0

type AlibabaSellerVendorOrderListAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_seller_vendor_order_list_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 接口返回
	Result *AlibabaSellerVendorOrderListResult `json:"result,omitempty" xml:"result,omitempty"`
}

国际站服务市场订单列表接口 成功返回结果

type AlibabaSellerVendorOrderListResult

type AlibabaSellerVendorOrderListResult struct {
	// 接口返回
	ExecDescription string `json:"exec_description,omitempty" xml:"exec_description,omitempty"`
	// 返回码
	ReturnCode int64 `json:"return_code,omitempty" xml:"return_code,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
	// 分页对象
	PageDto *PageDto `json:"page_dto,omitempty" xml:"page_dto,omitempty"`
	// 返回对象集合
	Dtos []Dto `json:"dtos,omitempty" xml:"dtos>dto,omitempty"`
}

AlibabaSellerVendorOrderListResult

type AlibabaSellerVendorServiceProcessAPIRequest added in v1.2.0

type AlibabaSellerVendorServiceProcessAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

服务商客户关联信息 API请求 alibaba.seller.vendor.service.process

服务商客户关联信息

func NewAlibabaSellerVendorServiceProcessRequest

func NewAlibabaSellerVendorServiceProcessRequest() *AlibabaSellerVendorServiceProcessAPIRequest

初始化AlibabaSellerVendorServiceProcessAPIRequest对象

func (AlibabaSellerVendorServiceProcessAPIRequest) GetApiMethodName added in v1.2.0

IRequest interface 方法, 获取Api method

func (AlibabaSellerVendorServiceProcessAPIRequest) GetApiParams added in v1.2.0

IRequest interface 方法, 获取API参数

func (AlibabaSellerVendorServiceProcessAPIRequest) GetOrderNum added in v1.2.0

OrderNum Getter

func (*AlibabaSellerVendorServiceProcessAPIRequest) SetOrderNum added in v1.2.0

func (r *AlibabaSellerVendorServiceProcessAPIRequest) SetOrderNum(_orderNum string) error

OrderNum Setter order_num

type AlibabaSellerVendorServiceProcessAPIResponse

type AlibabaSellerVendorServiceProcessAPIResponse struct {
	model.CommonResponse
	AlibabaSellerVendorServiceProcessAPIResponseModel
}

服务商客户关联信息 API返回值 alibaba.seller.vendor.service.process

服务商客户关联信息

type AlibabaSellerVendorServiceProcessAPIResponseModel added in v1.2.0

type AlibabaSellerVendorServiceProcessAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_seller_vendor_service_process_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 异步获取历史数据接口返回结果
	Result *AlibabaSellerVendorServiceProcessResultDto `json:"result,omitempty" xml:"result,omitempty"`
}

服务商客户关联信息 成功返回结果

type AlibabaSellerVendorServiceProcessResultDto

type AlibabaSellerVendorServiceProcessResultDto struct {
	// 异常说明
	ExecDescription string `json:"exec_description,omitempty" xml:"exec_description,omitempty"`
	// 状态码
	ReturnCode int64 `json:"return_code,omitempty" xml:"return_code,omitempty"`
	// 返回集合
	List []VendorMerchantRecordBaseDto `json:"list,omitempty" xml:"list>vendor_merchant_record_base_dto,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaSellerVendorServiceProcessResultDto

type AlibabaSellerVendorServiceVendorprocessAPIRequest added in v1.2.0

type AlibabaSellerVendorServiceVendorprocessAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

服务商客户关联信息 API请求 alibaba.seller.vendor.service.vendorprocess

服务商客户关联信息

func NewAlibabaSellerVendorServiceVendorprocessRequest

func NewAlibabaSellerVendorServiceVendorprocessRequest() *AlibabaSellerVendorServiceVendorprocessAPIRequest

初始化AlibabaSellerVendorServiceVendorprocessAPIRequest对象

func (AlibabaSellerVendorServiceVendorprocessAPIRequest) GetApiMethodName added in v1.2.0

IRequest interface 方法, 获取Api method

func (AlibabaSellerVendorServiceVendorprocessAPIRequest) GetApiParams added in v1.2.0

IRequest interface 方法, 获取API参数

func (AlibabaSellerVendorServiceVendorprocessAPIRequest) GetOrderNum added in v1.2.0

OrderNum Getter

func (*AlibabaSellerVendorServiceVendorprocessAPIRequest) SetOrderNum added in v1.2.0

OrderNum Setter order_num

type AlibabaSellerVendorServiceVendorprocessAPIResponse

type AlibabaSellerVendorServiceVendorprocessAPIResponse struct {
	model.CommonResponse
	AlibabaSellerVendorServiceVendorprocessAPIResponseModel
}

服务商客户关联信息 API返回值 alibaba.seller.vendor.service.vendorprocess

服务商客户关联信息

type AlibabaSellerVendorServiceVendorprocessAPIResponseModel added in v1.2.0

type AlibabaSellerVendorServiceVendorprocessAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_seller_vendor_service_vendorprocess_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 异步获取历史数据接口返回结果
	Result *AlibabaSellerVendorServiceVendorprocessResultDto `json:"result,omitempty" xml:"result,omitempty"`
}

服务商客户关联信息 成功返回结果

type AlibabaSellerVendorServiceVendorprocessResultDto

type AlibabaSellerVendorServiceVendorprocessResultDto struct {
	// 异常说明
	ExecDescription string `json:"exec_description,omitempty" xml:"exec_description,omitempty"`
	// 状态码
	ReturnCode int64 `json:"return_code,omitempty" xml:"return_code,omitempty"`
	// 返回集合
	List []VendorMerchantRecordBaseDto `json:"list,omitempty" xml:"list>vendor_merchant_record_base_dto,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaSellerVendorServiceVendorprocessResultDto

type Dto

type Dto struct {
	// 订单类型
	OrderType string `json:"order_type,omitempty" xml:"order_type,omitempty"`
	// 订单编号
	OrderNo string `json:"order_no,omitempty" xml:"order_no,omitempty"`
	// 购买数量
	Quantity int64 `json:"quantity,omitempty" xml:"quantity,omitempty"`
	// 订单状态
	CurrentStatus string `json:"current_status,omitempty" xml:"current_status,omitempty"`
	// 服务编码
	ServiceCode string `json:"service_code,omitempty" xml:"service_code,omitempty"`
	// 状态更新时间
	FireTime string `json:"fire_time,omitempty" xml:"fire_time,omitempty"`
	// 成交价格
	TransactionPrice string `json:"transaction_price,omitempty" xml:"transaction_price,omitempty"`
	// 创建时间
	CreateTime string `json:"create_time,omitempty" xml:"create_time,omitempty"`
	// 成交单价
	TransactionUnitPrice string `json:"transaction_unit_price,omitempty" xml:"transaction_unit_price,omitempty"`
	// 支付通道
	PayChannel string `json:"pay_channel,omitempty" xml:"pay_channel,omitempty"`
	// 订单货币类型
	Currency string `json:"currency,omitempty" xml:"currency,omitempty"`
	// 退款金额
	RefundPrice string `json:"refund_price,omitempty" xml:"refund_price,omitempty"`
	// 订单标题
	OrderTitle string `json:"order_title,omitempty" xml:"order_title,omitempty"`
	// 规格编码
	SkuCode string `json:"sku_code,omitempty" xml:"sku_code,omitempty"`
	// 购买者阿里id
	BuyerAliId int64 `json:"buyer_ali_id,omitempty" xml:"buyer_ali_id,omitempty"`
	// 购买者登陆账号
	BuyerLoginId string `json:"buyer_login_id,omitempty" xml:"buyer_login_id,omitempty"`
	// 服务分类id
	ServiceCategoryId int64 `json:"service_category_id,omitempty" xml:"service_category_id,omitempty"`
	// 服务分类名称
	ServiceCategory string `json:"service_category,omitempty" xml:"service_category,omitempty"`
	// 用户购买sku
	ServiceSkuLabel string `json:"service_sku_label,omitempty" xml:"service_sku_label,omitempty"`
}

Dto

type Null added in v1.2.0

type Null struct {
}

Null

type OpenTradeDetailDto

type OpenTradeDetailDto struct {
	// 阿里id
	BuyerAliId int64 `json:"buyer_ali_id,omitempty" xml:"buyer_ali_id,omitempty"`
	// 购买人
	BuyerName string `json:"buyer_name,omitempty" xml:"buyer_name,omitempty"`
	// 公司名称
	CompanyName string `json:"company_name,omitempty" xml:"company_name,omitempty"`
	// 联系电话
	ContactMobile string `json:"contact_mobile,omitempty" xml:"contact_mobile,omitempty"`
	// 创建时间
	CreateTime string `json:"create_time,omitempty" xml:"create_time,omitempty"`
	// 订单货币类型
	Currency string `json:"currency,omitempty" xml:"currency,omitempty"`
	// 当前状态
	CurrentStatus string `json:"current_status,omitempty" xml:"current_status,omitempty"`
	// 状态更新时间
	FireTime string `json:"fire_time,omitempty" xml:"fire_time,omitempty"`
	// 订单编号
	OrderNo string `json:"order_no,omitempty" xml:"order_no,omitempty"`
	// 订单标题
	OrderTitle string `json:"order_title,omitempty" xml:"order_title,omitempty"`
	// 订单类型
	OrderType string `json:"order_type,omitempty" xml:"order_type,omitempty"`
	// 支付通道
	PayChannel string `json:"pay_channel,omitempty" xml:"pay_channel,omitempty"`
	// 购买数量
	Quantity int64 `json:"quantity,omitempty" xml:"quantity,omitempty"`
	// 退款金额
	RefundPrice string `json:"refund_price,omitempty" xml:"refund_price,omitempty"`
	// 服务编码
	ServiceCode string `json:"service_code,omitempty" xml:"service_code,omitempty"`
	// 服务名称
	ServiceName string `json:"service_name,omitempty" xml:"service_name,omitempty"`
	// 服务评分
	ServiceScore int64 `json:"service_score,omitempty" xml:"service_score,omitempty"`
	// 规格编码
	SkuCode string `json:"sku_code,omitempty" xml:"sku_code,omitempty"`
	// 规格
	SkuValue string `json:"sku_value,omitempty" xml:"sku_value,omitempty"`
	// 成交价格
	TransactionPrice string `json:"transaction_price,omitempty" xml:"transaction_price,omitempty"`
	// 成交单价
	TransactionUnitPrice string `json:"transaction_unit_price,omitempty" xml:"transaction_unit_price,omitempty"`
	// 购买者登陆账号
	BuyerLoginId string `json:"buyer_login_id,omitempty" xml:"buyer_login_id,omitempty"`
	// 服务分类id
	ServiceCategoryId int64 `json:"service_category_id,omitempty" xml:"service_category_id,omitempty"`
	// 服务分类名称
	ServiceCategory string `json:"service_category,omitempty" xml:"service_category,omitempty"`
	// 用户购买sku
	ServiceSkuLabel string `json:"service_sku_label,omitempty" xml:"service_sku_label,omitempty"`
}

OpenTradeDetailDto

type PageDto

type PageDto struct {
	// 总数据量
	TotalItem int64 `json:"total_item,omitempty" xml:"total_item,omitempty"`
	// 总页数
	TotalPage int64 `json:"total_page,omitempty" xml:"total_page,omitempty"`
	// 每页显示数量
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
	// 当前页码
	CurrentPage int64 `json:"current_page,omitempty" xml:"current_page,omitempty"`
}

PageDto

type QueryTradeDto

type QueryTradeDto struct {
	// 交易单状态变更起始时间
	FireTimeStart string `json:"fire_time_start,omitempty" xml:"fire_time_start,omitempty"`
	// 服务code列表
	ServiceCode []string `json:"service_code,omitempty" xml:"service_code>string,omitempty"`
	// 起始值
	OffSet int64 `json:"off_set,omitempty" xml:"off_set,omitempty"`
	// 交易单创建结束时间
	CreateTimeEnd string `json:"create_time_end,omitempty" xml:"create_time_end,omitempty"`
	// 结束值
	Length int64 `json:"length,omitempty" xml:"length,omitempty"`
	// 交易单创建起始时间
	CreateTimeStart string `json:"create_time_start,omitempty" xml:"create_time_start,omitempty"`
	// 是否展示
	IsDisplay bool `json:"is_display,omitempty" xml:"is_display,omitempty"`
	// 交易单状态变更结束时间
	FireTimeEnd string `json:"fire_time_end,omitempty" xml:"fire_time_end,omitempty"`
	// 买家aliid
	BuyerAliId int64 `json:"buyer_ali_id,omitempty" xml:"buyer_ali_id,omitempty"`
	// 交易id号列表
	TradeIds []int64 `json:"trade_ids,omitempty" xml:"trade_ids>int64,omitempty"`
	// 订单号列表
	OrderNos []string `json:"order_nos,omitempty" xml:"order_nos>string,omitempty"`
	// 状态列表
	Status []Null `json:"status,omitempty" xml:"status>null,omitempty"`
	// 页码
	Page int64 `json:"page,omitempty" xml:"page,omitempty"`
	// 每页显示数量
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
}

QueryTradeDto

type VendorMerchantRecordBaseDto

type VendorMerchantRecordBaseDto struct {
	// 定制力是否双60
	Nrts6060 string `json:"nrts6060,omitempty" xml:"nrts6060,omitempty"`
	// 赛道,RTS/询盘
	Road string `json:"road,omitempty" xml:"road,omitempty"`
	// 是否至少发布了1个良好的且非aliwood且非段灯片的视频
	IsVideo string `json:"is_video,omitempty" xml:"is_video,omitempty"`
	// 是否至少发布了1个有效报价RFQ
	IsRfq string `json:"is_rfq,omitempty" xml:"is_rfq,omitempty"`
	// 历史截至当日橱窗商品使用率
	WinProdRatioStd001 string `json:"win_prod_ratio_std001,omitempty" xml:"win_prod_ratio_std001,omitempty"`
	// 是否信保亮灯Y/N
	IsCrdScrty string `json:"is_crd_scrty,omitempty" xml:"is_crd_scrty,omitempty"`
	// 月PC在线时长达标率
	PcOnlineHourRate string `json:"pc_online_hour_rate,omitempty" xml:"pc_online_hour_rate,omitempty"`
	// 近30天PC/MA在线时长(小时)
	StayHourPcM string `json:"stay_hour_pc_m,omitempty" xml:"stay_hour_pc_m,omitempty"`
	// 月pc在线天数达标率
	PcOnlineDayRate string `json:"pc_online_day_rate,omitempty" xml:"pc_online_day_rate,omitempty"`
	// 近30天PC/MA活跃天数
	ActiveDayPcM int64 `json:"active_day_pc_m,omitempty" xml:"active_day_pc_m,omitempty"`
	// 月活跃子账号达标率
	ActiveMbrRate string `json:"active_mbr_rate,omitempty" xml:"active_mbr_rate,omitempty"`
	// 近30天活跃子账号数
	ActiveMbrM int64 `json:"active_mbr_m,omitempty" xml:"active_mbr_m,omitempty"`
	// 月mc达标率
	McRate string `json:"mc_rate,omitempty" xml:"mc_rate,omitempty"`
	// 关键词达标率
	KwRate string `json:"kw_rate,omitempty" xml:"kw_rate,omitempty"`
	// k200比率,关键词除以200的比率
	Kw200Rate string `json:"kw200_rate,omitempty" xml:"kw200_rate,omitempty"`
	// 视频数量
	ProdVideoCnt int64 `json:"prod_video_cnt,omitempty" xml:"prod_video_cnt,omitempty"`
	// 是否有侵权品牌Y/N
	IsTortBrand string `json:"is_tort_brand,omitempty" xml:"is_tort_brand,omitempty"`
	// 是否有价格不合理产品Y/N
	HavePriceProd string `json:"have_price_prod,omitempty" xml:"have_price_prod,omitempty"`
	// 是否有重复铺货产品Y/N
	HaveRepeatProd string `json:"have_repeat_prod,omitempty" xml:"have_repeat_prod,omitempty"`
	// RTS商品数
	RtsProdCnt int64 `json:"rts_prod_cnt,omitempty" xml:"rts_prod_cnt,omitempty"`
	// 实力优品达标率
	GoodProdRate string `json:"good_prod_rate,omitempty" xml:"good_prod_rate,omitempty"`
	// 实力优品数
	GoodProdCnt int64 `json:"good_prod_cnt,omitempty" xml:"good_prod_cnt,omitempty"`
	// 潜力品达标率
	PotentialProdRate string `json:"potential_prod_rate,omitempty" xml:"potential_prod_rate,omitempty"`
	// 潜力品数
	PotentialProdCnt int64 `json:"potential_prod_cnt,omitempty" xml:"potential_prod_cnt,omitempty"`
	// 蓝海品数
	ProdBlue int64 `json:"prod_blue,omitempty" xml:"prod_blue,omitempty"`
	// 4.5分及以上商品数
	Prod45 int64 `json:"prod45,omitempty" xml:"prod45,omitempty"`
	// 4.0分及以上商品数
	Prod40 int64 `json:"prod40,omitempty" xml:"prod40,omitempty"`
	// p150且4分达标率
	P1504Rate string `json:"p1504_rate,omitempty" xml:"p1504_rate,omitempty"`
	// p30且4分达标率
	P304Rate string `json:"p304_rate,omitempty" xml:"p304_rate,omitempty"`
	// 有效商品数
	ProdCnt int64 `json:"prod_cnt,omitempty" xml:"prod_cnt,omitempty"`
	// 店铺是否装修,页面最晚修改时间和旺铺创建时间差
	IsCompDec string `json:"is_comp_dec,omitempty" xml:"is_comp_dec,omitempty"`
	// 服务商发品数
	AgencyProdCnt int64 `json:"agency_prod_cnt,omitempty" xml:"agency_prod_cnt,omitempty"`
	// 订单完成时间
	TradesuccessTime string `json:"tradesuccess_time,omitempty" xml:"tradesuccess_time,omitempty"`
	// 进入交付时间
	DeliveredTime string `json:"delivered_time,omitempty" xml:"delivered_time,omitempty"`
	// 下单时间
	PayTime string `json:"pay_time,omitempty" xml:"pay_time,omitempty"`
	// 交易单当前状态
	CurrentStatus string `json:"current_status,omitempty" xml:"current_status,omitempty"`
	// 订单号
	OrdNum string `json:"ord_num,omitempty" xml:"ord_num,omitempty"`
	// 服务名称
	ServiceName string `json:"service_name,omitempty" xml:"service_name,omitempty"`
	// 服务编码
	ServiceCode string `json:"service_code,omitempty" xml:"service_code,omitempty"`
	// 服务商编码
	VendorCode string `json:"vendor_code,omitempty" xml:"vendor_code,omitempty"`
	// 服务商公司名
	VendorCompName string `json:"vendor_comp_name,omitempty" xml:"vendor_comp_name,omitempty"`
	// 主营二级类目描述
	MainCateLv2Desc string `json:"main_cate_lv2_desc,omitempty" xml:"main_cate_lv2_desc,omitempty"`
	// 主营二级类目ID
	MainCateLv2Std001 int64 `json:"main_cate_lv2_std001,omitempty" xml:"main_cate_lv2_std001,omitempty"`
	// 主营一级类目描述
	MainCateLv1Desc string `json:"main_cate_lv1_desc,omitempty" xml:"main_cate_lv1_desc,omitempty"`
	// 主营一级类目ID
	MainCateLv1Std001 int64 `json:"main_cate_lv1_std001,omitempty" xml:"main_cate_lv1_std001,omitempty"`
	// 会员主账号id
	AdminMbrId string `json:"admin_mbr_id,omitempty" xml:"admin_mbr_id,omitempty"`
	// 系统入库时间
	DwInsTime string `json:"dw_ins_time,omitempty" xml:"dw_ins_time,omitempty"`
	// 统计日期
	StatDate string `json:"stat_date,omitempty" xml:"stat_date,omitempty"`
	// RTS力是否双60
	Rts6060 string `json:"rts6060,omitempty" xml:"rts6060,omitempty"`
	// 当月星等级
	LevelStarPage int64 `json:"level_star_page,omitempty" xml:"level_star_page,omitempty"`
	// 预测下月星等级
	LevelStar int64 `json:"level_star,omitempty" xml:"level_star,omitempty"`
	// 最近7天店铺日均搜索曝光是否正常Y/N
	IsCompExpOk string `json:"is_comp_exp_ok,omitempty" xml:"is_comp_exp_ok,omitempty"`
	// 关键词曝光是否正常Y/N
	IsKwExpOk string `json:"is_kw_exp_ok,omitempty" xml:"is_kw_exp_ok,omitempty"`
	// 是否有降星风险Y/N
	IsStarLowerRisk string `json:"is_star_lower_risk,omitempty" xml:"is_star_lower_risk,omitempty"`
	// 开通周期(付款到开通)
	OpenCycle int64 `json:"open_cycle,omitempty" xml:"open_cycle,omitempty"`
	// 首年0-6个月信保渗透月数
	FiscalSvrc6mValidOrdCnt int64 `json:"fiscal_svrc6m_valid_ord_cnt,omitempty" xml:"fiscal_svrc6m_valid_ord_cnt,omitempty"`
	// 是否p4p月消耗达标【Y/N】
	IsP4pCostQualified1 string `json:"is_p4p_cost_qualified1,omitempty" xml:"is_p4p_cost_qualified1,omitempty"`
	// 是否p4p绑定推广商品数大于等于80【Y/N】
	IsP4pProdGeq80Cnt string `json:"is_p4p_prod_geq80_cnt,omitempty" xml:"is_p4p_prod_geq80_cnt,omitempty"`
	// 是否p4p绑定推广商品数大于等于30【Y/N】
	IsP4pProdGeq30Cnt string `json:"is_p4p_prod_geq30_cnt,omitempty" xml:"is_p4p_prod_geq30_cnt,omitempty"`
	// 是否商机破蛋【Y/N】
	IsHasAb string `json:"is_has_ab,omitempty" xml:"is_has_ab,omitempty"`
	// 最近一次开通服务天数
	LatestActualSrvcDays int64 `json:"latest_actual_srvc_days,omitempty" xml:"latest_actual_srvc_days,omitempty"`
	// 是否首月询盘破蛋【Y/N】
	IsHasMcFstMon string `json:"is_has_mc_fst_mon,omitempty" xml:"is_has_mc_fst_mon,omitempty"`
	// 是否MC15达标(询盘达到15个)
	IsMc15 string `json:"is_mc15,omitempty" xml:"is_mc15,omitempty"`
	// 服务商开始接洽时间
	ContactTime string `json:"contact_time,omitempty" xml:"contact_time,omitempty"`
	// 是否蓝海定招
	IsBlueNewSign string `json:"is_blue_new_sign,omitempty" xml:"is_blue_new_sign,omitempty"`
}

VendorMerchantRecordBaseDto

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL