package cn.ksource.web.controller.wxpay.paybean;
|
|
public class OrderBean {
|
|
|
private String body = "";
|
|
private String detail = "";
|
|
private String attach = "";
|
|
private String out_trade_no = "";
|
|
private String fee_type = "";
|
|
private int total_fee = 0;
|
|
private String time_start = "";
|
|
private String time_expire = "";
|
|
private String goods_tag = "";
|
|
private String product_id = "";
|
|
private String limit_pay = "";
|
|
private String openid = "";
|
|
public String getBody() {
|
return body;
|
}
|
|
public void setBody(String body) {
|
this.body = body;
|
}
|
|
public String getDetail() {
|
return detail;
|
}
|
|
public void setDetail(String detail) {
|
this.detail = detail;
|
}
|
|
public String getAttach() {
|
return attach;
|
}
|
|
public void setAttach(String attach) {
|
this.attach = attach;
|
}
|
|
public String getOut_trade_no() {
|
return out_trade_no;
|
}
|
|
public void setOut_trade_no(String out_trade_no) {
|
this.out_trade_no = out_trade_no;
|
}
|
|
public String getFee_type() {
|
return fee_type;
|
}
|
|
public void setFee_type(String fee_type) {
|
this.fee_type = fee_type;
|
}
|
|
|
public int getTotal_fee() {
|
return total_fee;
|
}
|
|
public void setTotal_fee(int total_fee) {
|
this.total_fee = total_fee;
|
}
|
|
public String getTime_start() {
|
return time_start;
|
}
|
|
public void setTime_start(String time_start) {
|
this.time_start = time_start;
|
}
|
|
public String getTime_expire() {
|
return time_expire;
|
}
|
|
public void setTime_expire(String time_expire) {
|
this.time_expire = time_expire;
|
}
|
|
public String getGoods_tag() {
|
return goods_tag;
|
}
|
|
public void setGoods_tag(String goods_tag) {
|
this.goods_tag = goods_tag;
|
}
|
|
public String getProduct_id() {
|
return product_id;
|
}
|
|
public void setProduct_id(String product_id) {
|
this.product_id = product_id;
|
}
|
|
public String getLimit_pay() {
|
return limit_pay;
|
}
|
|
public void setLimit_pay(String limit_pay) {
|
this.limit_pay = limit_pay;
|
}
|
|
public String getOpenid() {
|
return openid;
|
}
|
|
public void setOpenid(String openid) {
|
this.openid = openid;
|
}
|
|
|
|
|
}
|