Commit 784b37c2 authored by zhangfeng's avatar zhangfeng

礼品分页返回VO修改

parent 6ae54181
......@@ -118,8 +118,6 @@ public class RewardBackVO {
private Date createTime;
@Data
@AllArgsConstructor
@NoArgsConstructor
public static class NodeAndPoints {
@ApiModelProperty(value = "提货点")
private List<Integer> wareHouses;
......@@ -127,5 +125,14 @@ public class RewardBackVO {
private Integer points;
@ApiModelProperty(value = "剩余数量")
private Integer quantityRemain;
public NodeAndPoints() {
}
public NodeAndPoints(List<Integer> wareHouses, Integer quantityRemain, Integer points) {
this.wareHouses = wareHouses;
this.quantityRemain = quantityRemain;
this.points = points;
}
}
}
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