From 17caebabf7a6a529b7039c71e21e5a324e31ea20 Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期五, 27 九月 2024 16:23:42 +0800
Subject: [PATCH] 代理新功能完善

---
 src/main/java/com/taoke/autopay/vo/KeyOrderVO.java |   44 ++++++++++++--------------------------------
 1 files changed, 12 insertions(+), 32 deletions(-)

diff --git a/src/main/java/com/taoke/autopay/vo/KeyOrderVO.java b/src/main/java/com/taoke/autopay/vo/KeyOrderVO.java
index 08453f7..996868c 100644
--- a/src/main/java/com/taoke/autopay/vo/KeyOrderVO.java
+++ b/src/main/java/com/taoke/autopay/vo/KeyOrderVO.java
@@ -1,46 +1,26 @@
 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;
-    }
 }

--
Gitblit v1.8.0