@NotBlank(message = "请填写开始时间段")
private String periodBegin;
@NotEmpty
private List<String> copies;
@NotNull(message = "请填写生效开始时间")
private Date effectiveStartTime;
@NotEmpty 用在集合类上面
@NotBlank 用在String上面
@NotNull 用在基本类型上