Compare commits

..

No commits in common. "f28e8b25b824ac6df300ef930a8bca1c966b9dac" and "8652bd1d7f481942172402b1af5a7151909ef05c" have entirely different histories.

View File

@ -18,6 +18,7 @@ public class addCaseExchangeDraft {
/** /**
* 内容 * 内容
*/ */
@NotEmpty(message = "请输入内容")
@JsonProperty("exchange_content") @JsonProperty("exchange_content")
private String exchangeContent; private String exchangeContent;
@ -52,7 +53,7 @@ public class addCaseExchangeDraft {
@Size(min = 1, max = 20, message = "有效期在1-20天内") @Size(min = 1, max = 20, message = "有效期在1-20天内")
private Integer validDay; // 投票有效期天数 private Integer validDay; // 投票有效期天数
@JsonProperty("case_exchange_vote_option") @JsonProperty("option")
private List<CaseExchangeVoteOptionRequest> option; private List<CaseExchangeVoteOptionRequest> option;
} }