From 7ac0b5be02902a96bd1feb658e41a9b69fa50738 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期六, 29 六月 2024 01:37:31 +0800 Subject: [PATCH] 功能完善 --- src/main/java/com/taoke/autopay/entity/KeyOrder.java | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/taoke/autopay/entity/KeyOrder.java b/src/main/java/com/taoke/autopay/entity/KeyOrder.java index 88eec5a..cb8ecf3 100644 --- a/src/main/java/com/taoke/autopay/entity/KeyOrder.java +++ b/src/main/java/com/taoke/autopay/entity/KeyOrder.java @@ -20,11 +20,15 @@ public final static int STATE_NOT_PAY = 1; // 宸叉敮浠� public final static int STATE_PAY = 2; + // 宸叉敮浠� + public final static int STATE_REJECT_PAY = 3; @Id @Column(name = "id") private String id; + @Column(name = "uid") + private Long uid; @Column(name = "key") private String key; @Column(name = "order_type") @@ -133,4 +137,12 @@ public void setUpdateTime(Date updateTime) { this.updateTime = updateTime; } + + public Long getUid() { + return uid; + } + + public void setUid(Long uid) { + this.uid = uid; + } } -- Gitblit v1.8.0