Commit b7696da3 by zhangchen

1.添加获取券规则接口

parent 1ba3a3ef
...@@ -14,6 +14,7 @@ public class VoucherRequestDto implements Serializable{ ...@@ -14,6 +14,7 @@ public class VoucherRequestDto implements Serializable{
private static final long serialVersionUID = 5973658970911987999L; private static final long serialVersionUID = 5973658970911987999L;
private String uid; private String uid;
private Integer voucherId; private Integer voucherId;
private Integer ruleId;
public String getUid() { public String getUid() {
return uid; return uid;
...@@ -27,6 +28,12 @@ public class VoucherRequestDto implements Serializable{ ...@@ -27,6 +28,12 @@ public class VoucherRequestDto implements Serializable{
public void setVoucherId(Integer voucherId) { public void setVoucherId(Integer voucherId) {
this.voucherId = voucherId; this.voucherId = voucherId;
} }
public Integer getRuleId() {
return ruleId;
}
public void setRuleId(Integer ruleId) {
this.ruleId = ruleId;
}
......
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