Commit 4733a477 by BetterXT

添加list泛型

parent da45ae56
...@@ -16,5 +16,5 @@ public class UpdateBidDTO { ...@@ -16,5 +16,5 @@ public class UpdateBidDTO {
private Integer bid; private Integer bid;
private List data; private List<Integer> data;
} }
...@@ -2,6 +2,8 @@ package io.better.toutiao.dto.budget; ...@@ -2,6 +2,8 @@ package io.better.toutiao.dto.budget;
import lombok.Data; import lombok.Data;
import java.util.List;
/** /**
* @author better create in 2019-04-29 14:48 * @author better create in 2019-04-29 14:48
*/ */
...@@ -10,7 +12,9 @@ public class UpdateBudgetDTO { ...@@ -10,7 +12,9 @@ public class UpdateBudgetDTO {
private Long advertiserId; private Long advertiserId;
private Integer[] campaignIds; private Integer adId;
private Integer budget;
private String optStatus; private List<Integer> data;
} }
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