package com.taoke.autopay.vo.admin;
|
|
import com.taoke.autopay.entity.ClientInfo;
|
|
import java.util.Date;
|
|
/**
|
* @author hxh
|
* @title: AdminOrderVO
|
* @description: 后台订单信息
|
* @date 2024/6/29 19:49
|
*/
|
public class AdminOrderVO {
|
private String id;
|
private Long uid;
|
private String key;
|
private int state;
|
private String stateDesc;
|
private String orderStateDesc;
|
private Integer orderType;
|
private String orderNo;
|
private ClientInfo distributedClientInfo;
|
private Date distributedTime;
|
private Date createTime;
|
private Date excutePayTime;
|
private Date payTime;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public String getKey() {
|
return key;
|
}
|
|
public void setKey(String key) {
|
this.key = key;
|
}
|
|
public int getState() {
|
return state;
|
}
|
|
public void setState(int state) {
|
this.state = state;
|
}
|
|
public String getStateDesc() {
|
return stateDesc;
|
}
|
|
public void setStateDesc(String stateDesc) {
|
this.stateDesc = stateDesc;
|
}
|
|
public String getOrderStateDesc() {
|
return orderStateDesc;
|
}
|
|
public void setOrderStateDesc(String orderStateDesc) {
|
this.orderStateDesc = orderStateDesc;
|
}
|
|
public Integer getOrderType() {
|
return orderType;
|
}
|
|
public void setOrderType(Integer orderType) {
|
this.orderType = orderType;
|
}
|
|
public String getOrderNo() {
|
return orderNo;
|
}
|
|
public void setOrderNo(String orderNo) {
|
this.orderNo = orderNo;
|
}
|
|
public ClientInfo getDistributedClientInfo() {
|
return distributedClientInfo;
|
}
|
|
public void setDistributedClientInfo(ClientInfo distributedClientInfo) {
|
this.distributedClientInfo = distributedClientInfo;
|
}
|
|
public Date getDistributedTime() {
|
return distributedTime;
|
}
|
|
public void setDistributedTime(Date distributedTime) {
|
this.distributedTime = distributedTime;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Date getExcutePayTime() {
|
return excutePayTime;
|
}
|
|
public void setExcutePayTime(Date excutePayTime) {
|
this.excutePayTime = excutePayTime;
|
}
|
|
public Date getPayTime() {
|
return payTime;
|
}
|
|
public void setPayTime(Date payTime) {
|
this.payTime = payTime;
|
}
|
}
|