package com.yeshi.fanli.dto.taobao.koubei;
|
|
import scala.Int;
|
|
/**
|
* @author hxh
|
* @title: KouBeiOrderDTO
|
* @description: TODO
|
* @date 2021/11/25 17:20
|
*/
|
public class KouBeiOrderDTO {
|
|
|
/**
|
* title : 商品标题
|
* pic_url : https://xxx
|
* shop_name : xxx店
|
* pay_amount : 30.00
|
* settle_amount : 28.00
|
* pay_time : 2021-09-01 10:00:00
|
* receive_time : 2021-09-01 10:00:00
|
* settle_time : 2021-09-01 11:00:00
|
* order_state : 1
|
* settle_state : 1
|
* settle : 10.00
|
* service : 8.00
|
* biz_order_id : 123456789
|
* parent_order_id : 123456789
|
* trace_time : 2021-09-01 11:00:00
|
* item_id : 123456789
|
* product_num : 1
|
* unit_price : 1
|
* subsidy_fee : 2.00
|
* award_fee : 2.00
|
* platform_commission_rate : 0.2
|
* platform_commission_fee : 2
|
* media_id : 123456789
|
* media_name : 媒体名称
|
* ad_zone_id : 123
|
* ad_zone_name : 微信渠道
|
* category_name : xxxx
|
* tk_create_time : 2021-09-01 11:00:00
|
* income : 2.0
|
*/
|
|
private String title; //商品标题
|
private String pic_url;//商品图片url
|
private String shop_name;//店铺名称
|
private String pay_amount;//付款金额
|
private String settle_amount;//结算金额
|
private String pay_time;//订单付款时间
|
private String receive_time;//收货时间
|
private String settle_time;//订单结算时间
|
private Integer order_state;//订单状态,0-已失效 1-已下单 2-已付款 4-已收货
|
private Integer settle_state;//结算状态,1.已结算 2.未结算
|
private String settle;//结算预估收入
|
private String service;//技术服务费
|
private String biz_order_id;//淘宝子单号
|
private String parent_order_id;//淘宝主单号
|
private String trace_time;//点击时间
|
private Long item_id;// 商品id
|
private Integer product_num;//商品数量
|
private String unit_price;//商品单价
|
private String subsidy_fee;//联盟补贴金额
|
private String award_fee;//激励金额(第二阶段分佣金额)
|
private String platform_commission_rate;//技术服务费率
|
private String platform_commission_fee;//技术服务费
|
private Integer media_id;//媒体id
|
private String media_name;//媒体名称
|
private Long ad_zone_id;//推广位id
|
private String ad_zone_name;//推广位名称
|
private String category_name;//类目名称
|
private String tk_create_time;//创建时间
|
private String income;//预估收入
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getPic_url() {
|
return pic_url;
|
}
|
|
public void setPic_url(String pic_url) {
|
this.pic_url = pic_url;
|
}
|
|
public String getShop_name() {
|
return shop_name;
|
}
|
|
public void setShop_name(String shop_name) {
|
this.shop_name = shop_name;
|
}
|
|
public String getPay_amount() {
|
return pay_amount;
|
}
|
|
public void setPay_amount(String pay_amount) {
|
this.pay_amount = pay_amount;
|
}
|
|
public String getSettle_amount() {
|
return settle_amount;
|
}
|
|
public void setSettle_amount(String settle_amount) {
|
this.settle_amount = settle_amount;
|
}
|
|
public String getPay_time() {
|
return pay_time;
|
}
|
|
public void setPay_time(String pay_time) {
|
this.pay_time = pay_time;
|
}
|
|
public String getReceive_time() {
|
return receive_time;
|
}
|
|
public void setReceive_time(String receive_time) {
|
this.receive_time = receive_time;
|
}
|
|
public String getSettle_time() {
|
return settle_time;
|
}
|
|
public void setSettle_time(String settle_time) {
|
this.settle_time = settle_time;
|
}
|
|
public Integer getOrder_state() {
|
return order_state;
|
}
|
|
public void setOrder_state(Integer order_state) {
|
this.order_state = order_state;
|
}
|
|
public Integer getSettle_state() {
|
return settle_state;
|
}
|
|
public void setSettle_state(Integer settle_state) {
|
this.settle_state = settle_state;
|
}
|
|
public String getSettle() {
|
return settle;
|
}
|
|
public void setSettle(String settle) {
|
this.settle = settle;
|
}
|
|
public String getService() {
|
return service;
|
}
|
|
public void setService(String service) {
|
this.service = service;
|
}
|
|
public String getBiz_order_id() {
|
return biz_order_id;
|
}
|
|
public void setBiz_order_id(String biz_order_id) {
|
this.biz_order_id = biz_order_id;
|
}
|
|
public String getParent_order_id() {
|
return parent_order_id;
|
}
|
|
public void setParent_order_id(String parent_order_id) {
|
this.parent_order_id = parent_order_id;
|
}
|
|
public String getTrace_time() {
|
return trace_time;
|
}
|
|
public void setTrace_time(String trace_time) {
|
this.trace_time = trace_time;
|
}
|
|
public Long getItem_id() {
|
return item_id;
|
}
|
|
public void setItem_id(Long item_id) {
|
this.item_id = item_id;
|
}
|
|
public Integer getProduct_num() {
|
return product_num;
|
}
|
|
public void setProduct_num(Integer product_num) {
|
this.product_num = product_num;
|
}
|
|
public String getUnit_price() {
|
return unit_price;
|
}
|
|
public void setUnit_price(String unit_price) {
|
this.unit_price = unit_price;
|
}
|
|
public String getSubsidy_fee() {
|
return subsidy_fee;
|
}
|
|
public void setSubsidy_fee(String subsidy_fee) {
|
this.subsidy_fee = subsidy_fee;
|
}
|
|
public String getAward_fee() {
|
return award_fee;
|
}
|
|
public void setAward_fee(String award_fee) {
|
this.award_fee = award_fee;
|
}
|
|
public String getPlatform_commission_rate() {
|
return platform_commission_rate;
|
}
|
|
public void setPlatform_commission_rate(String platform_commission_rate) {
|
this.platform_commission_rate = platform_commission_rate;
|
}
|
|
public String getPlatform_commission_fee() {
|
return platform_commission_fee;
|
}
|
|
public void setPlatform_commission_fee(String platform_commission_fee) {
|
this.platform_commission_fee = platform_commission_fee;
|
}
|
|
public Integer getMedia_id() {
|
return media_id;
|
}
|
|
public void setMedia_id(Integer media_id) {
|
this.media_id = media_id;
|
}
|
|
public String getMedia_name() {
|
return media_name;
|
}
|
|
public void setMedia_name(String media_name) {
|
this.media_name = media_name;
|
}
|
|
public Long getAd_zone_id() {
|
return ad_zone_id;
|
}
|
|
public void setAd_zone_id(Long ad_zone_id) {
|
this.ad_zone_id = ad_zone_id;
|
}
|
|
public String getAd_zone_name() {
|
return ad_zone_name;
|
}
|
|
public void setAd_zone_name(String ad_zone_name) {
|
this.ad_zone_name = ad_zone_name;
|
}
|
|
public String getCategory_name() {
|
return category_name;
|
}
|
|
public void setCategory_name(String category_name) {
|
this.category_name = category_name;
|
}
|
|
public String getTk_create_time() {
|
return tk_create_time;
|
}
|
|
public void setTk_create_time(String tk_create_time) {
|
this.tk_create_time = tk_create_time;
|
}
|
|
public String getIncome() {
|
return income;
|
}
|
|
public void setIncome(String income) {
|
this.income = income;
|
}
|
}
|