| | |
| | | package com.taoke.autopay.vo; |
| | | |
| | | import lombok.Builder; |
| | | import lombok.Data; |
| | | import lombok.experimental.Tolerate; |
| | | |
| | | import java.util.Date; |
| | | |
| | | @Data |
| | | @Builder |
| | | public class KeyOrderVO { |
| | | public final static int STATE_NOT_PROCESS = 0; |
| | | public final static int STATE_PROCESSED = 1; |
| | | public final static int STATE_PROCESS_ERROR = 2; |
| | | |
| | | @Tolerate |
| | | public KeyOrderVO(){ |
| | | |
| | | } |
| | | |
| | | private String id; |
| | | private String key; |
| | | private int state; |
| | | private Integer payType; |
| | | private Date createTime; |
| | | |
| | | public String getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(String id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | 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 Date getCreateTime() { |
| | | return createTime; |
| | | } |
| | | |
| | | public void setCreateTime(Date createTime) { |
| | | this.createTime = createTime; |
| | | } |
| | | } |