Commit 7abd11a8 by Huang Linyu

添加字段 multiple

parent c14c2d78
......@@ -120,6 +120,11 @@ public class VoucherRule {
* 修改时间
*/
private Date dataChangeLastTime;
/**
* 是否多球场抵用券 0,否 , 1 是
*/
private int multiple;
@Id
@GeneratedValue(strategy = IDENTITY)
......@@ -308,4 +313,15 @@ public class VoucherRule {
this.createdTime = createdTime;
}
@Column(name = "multiple")
public int getMultiple() {
return multiple;
}
public void setMultiple(int multiple) {
this.multiple = multiple;
}
}
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 sign in to comment