|
|
@ -51,11 +51,20 @@ public class IcPartyActivityImportExcel extends ExcelVerifyInfo { |
|
|
|
@ExcelProperty(value = "服务人数*") |
|
|
|
private Integer peopleCount; |
|
|
|
|
|
|
|
@NotNull(message = "活动时间不能为空") |
|
|
|
@ExcelProperty("活动时间*") |
|
|
|
@NotNull(message = "活动开始时间不能为空") |
|
|
|
@ExcelProperty("活动开始时间*") |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|
|
|
private Date activityTime; |
|
|
|
|
|
|
|
/** |
|
|
|
* 烟台:此列作为活动结束时间;必填; |
|
|
|
*/ |
|
|
|
@NotNull(message = "活动结束时间不能为空") |
|
|
|
@ExcelProperty("活动结束时间*") |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|
|
|
private Date activityEndTime; |
|
|
|
|
|
|
|
|
|
|
|
@NotBlank(message = "详细地址") |
|
|
|
@Length(max = 250, message = "详细地址最多输入250字") |
|
|
|
@ExcelProperty(value = "详细地址*") |
|
|
|