Commit 7abd11a8 by Huang Linyu

添加字段 multiple

parent c14c2d78
......@@ -121,6 +121,11 @@ public class VoucherRule {
*/
private Date dataChangeLastTime;
/**
* 是否多球场抵用券 0,否 , 1 是
*/
private int multiple;
@Id
@GeneratedValue(strategy = IDENTITY)
@Column(name = "id", unique = true, nullable = false)
......@@ -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