| | |
| | | package com.taoke.autopay.vo.admin; |
| | | |
| | | import com.taoke.autopay.entity.ClientInfo; |
| | | import com.taoke.autopay.utils.IPUtil; |
| | | import lombok.Builder; |
| | | import lombok.Data; |
| | | import lombok.experimental.Tolerate; |
| | | |
| | | import java.util.Date; |
| | | |
| | |
| | | * @description: 后台订单信息 |
| | | * @date 2024/6/29 19:49 |
| | | */ |
| | | @Data |
| | | @Builder |
| | | public class AdminOrderVO { |
| | | |
| | | @Tolerate |
| | | public AdminOrderVO(){ |
| | | |
| | | } |
| | | |
| | | private String id; |
| | | private Long uid; |
| | | private String key; |
| | |
| | | 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; |
| | | } |
| | | private String agent; |
| | | private String orderChannel; |
| | | private String payMerchant; |
| | | private String ip; |
| | | private IPUtil.IPInfo ipInfo; |
| | | private Boolean ignore; |
| | | } |