From 595b7935a30e84fba1bc3561d05f9d19d3e32e1f Mon Sep 17 00:00:00 2001
From: Administrator <1101184511@qq.com>
Date: 星期三, 23 四月 2025 00:45:48 +0800
Subject: [PATCH] 后台管理页面完成

---
 src/main/java/com/taoke/autopay/vo/KeyOrderVO.java |   48 ++++++++++++++++--------------------------------
 1 files changed, 16 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 ded1883..996868c 100644
--- a/src/main/java/com/taoke/autopay/vo/KeyOrderVO.java
+++ b/src/main/java/com/taoke/autopay/vo/KeyOrderVO.java
@@ -1,42 +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