Commit 5bd53a05 authored by liuyang's avatar liuyang

添加愿望编号

parent 9b86a35c
...@@ -28,6 +28,7 @@ public class Wish { ...@@ -28,6 +28,7 @@ public class Wish {
private int status;//愿望状态,0:发布;1:领取;2.寄送中;3:红会代收;4:完成 private int status;//愿望状态,0:发布;1:领取;2.寄送中;3:红会代收;4:完成
private String volunteerId; //领取愿望的爱心人士ID private String volunteerId; //领取愿望的爱心人士ID
private String rainbowPlanUserId; //小朋友ID private String rainbowPlanUserId; //小朋友ID
private String code;//愿望编号
@ManyToOne @ManyToOne
private RainbowPlanUser children = new RainbowPlanUser(); private RainbowPlanUser children = new RainbowPlanUser();
...@@ -163,7 +164,11 @@ public class Wish { ...@@ -163,7 +164,11 @@ public class Wish {
this.activity = activity; this.activity = activity;
} }
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment