package com.taoke.autopay.dto;
|
|
import java.util.List;
|
|
/**
|
* @author hxh
|
* @title: DYOrder
|
* @description: TODO
|
* @date 2024/6/14 17:56
|
*/
|
public class DYOrderDto {
|
// 订单未支付
|
public final static int ORDER_STATUS_NOT_PAY = 1;
|
// 订单取消
|
public final static int ORDER_STATUS_CANCELED= 4;
|
|
|
/**
|
* app_id : 1128
|
* post_amount : 0
|
* product_name : ["【宠粉福利冰凉贴一包】传奇保罗男款冰丝防晒衣男士夏季薄款户外透"]
|
* order_type : ["精选联盟"]
|
* order_expire_time : [300]
|
* product_id_str : ["3689961278710874220"]
|
* order_id : 6930863015984699141
|
* order_status : 2
|
* order_status_desc : 待发货
|
* cancel_reason :
|
* order_amount : 600
|
* pay_amount : 300
|
* shop_id : 172106365
|
* shop_name : 大枰运动鞋服专营店
|
* create_time : 1718350949
|
* _create_time : 2024-06-14 15:42:29
|
* source : spk
|
*/
|
|
private Long app_id;
|
private Integer post_amount;
|
private String order_id;
|
private Integer order_status;
|
private String order_status_desc;
|
private String cancel_reason;
|
private Integer order_amount;
|
private Integer pay_amount;
|
private Long shop_id;
|
private String shop_name;
|
private Long create_time;
|
private String _create_time;
|
private String source;
|
private List<String> product_name;
|
private List<String> order_type;
|
private List<Integer> order_expire_time;
|
private List<String> product_id_str;
|
|
public Long getApp_id() {
|
return app_id;
|
}
|
|
public void setApp_id(Long app_id) {
|
this.app_id = app_id;
|
}
|
|
public Integer getPost_amount() {
|
return post_amount;
|
}
|
|
public void setPost_amount(Integer post_amount) {
|
this.post_amount = post_amount;
|
}
|
|
public String getOrder_id() {
|
return order_id;
|
}
|
|
public void setOrder_id(String order_id) {
|
this.order_id = order_id;
|
}
|
|
public Integer getOrder_status() {
|
return order_status;
|
}
|
|
public void setOrder_status(Integer order_status) {
|
this.order_status = order_status;
|
}
|
|
public String getOrder_status_desc() {
|
return order_status_desc;
|
}
|
|
public void setOrder_status_desc(String order_status_desc) {
|
this.order_status_desc = order_status_desc;
|
}
|
|
public String getCancel_reason() {
|
return cancel_reason;
|
}
|
|
public void setCancel_reason(String cancel_reason) {
|
this.cancel_reason = cancel_reason;
|
}
|
|
public Integer getOrder_amount() {
|
return order_amount;
|
}
|
|
public void setOrder_amount(Integer order_amount) {
|
this.order_amount = order_amount;
|
}
|
|
public Integer getPay_amount() {
|
return pay_amount;
|
}
|
|
public void setPay_amount(Integer pay_amount) {
|
this.pay_amount = pay_amount;
|
}
|
|
public Long getShop_id() {
|
return shop_id;
|
}
|
|
public void setShop_id(Long shop_id) {
|
this.shop_id = shop_id;
|
}
|
|
public String getShop_name() {
|
return shop_name;
|
}
|
|
public void setShop_name(String shop_name) {
|
this.shop_name = shop_name;
|
}
|
|
public Long getCreate_time() {
|
return create_time;
|
}
|
|
public void setCreate_time(Long create_time) {
|
this.create_time = create_time;
|
}
|
|
public String get_create_time() {
|
return _create_time;
|
}
|
|
public void set_create_time(String _create_time) {
|
this._create_time = _create_time;
|
}
|
|
public String getSource() {
|
return source;
|
}
|
|
public void setSource(String source) {
|
this.source = source;
|
}
|
|
public List<String> getProduct_name() {
|
return product_name;
|
}
|
|
public void setProduct_name(List<String> product_name) {
|
this.product_name = product_name;
|
}
|
|
public List<String> getOrder_type() {
|
return order_type;
|
}
|
|
public void setOrder_type(List<String> order_type) {
|
this.order_type = order_type;
|
}
|
|
public List<Integer> getOrder_expire_time() {
|
return order_expire_time;
|
}
|
|
public void setOrder_expire_time(List<Integer> order_expire_time) {
|
this.order_expire_time = order_expire_time;
|
}
|
|
public List<String> getProduct_id_str() {
|
return product_id_str;
|
}
|
|
public void setProduct_id_str(List<String> product_id_str) {
|
this.product_id_str = product_id_str;
|
}
|
}
|