|
|
@ -5,6 +5,7 @@ import cn.afterturn.easypoi.excel.annotation.ExcelCollection; |
|
|
|
import com.epmet.commons.tools.utils.ExcelVerifyInfo; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import javax.validation.constraints.NotBlank; |
|
|
|
import java.util.Date; |
|
|
|
import java.util.List; |
|
|
|
|
|
|
@ -17,18 +18,23 @@ import java.util.List; |
|
|
|
public class ImportCommunitySelfOrganization extends ExcelVerifyInfo { |
|
|
|
|
|
|
|
@Excel(name = "组织名称", needMerge = true) |
|
|
|
@NotBlank(message = "不能为空") |
|
|
|
private String organizationName; |
|
|
|
|
|
|
|
@Excel(name = "组织人数", needMerge = true) |
|
|
|
//@NotNull(message = "不能为空")
|
|
|
|
private Integer organizationPersonCount; |
|
|
|
|
|
|
|
@Excel(name = "服务事项", needMerge = true) |
|
|
|
@NotBlank(message = "不能为空") |
|
|
|
private String serviceItem; |
|
|
|
|
|
|
|
@Excel(name = "负责人", needMerge = true) |
|
|
|
@NotBlank(message = "不能为空") |
|
|
|
private String principalName; |
|
|
|
|
|
|
|
@Excel(name = "联系电话", needMerge = true) |
|
|
|
@NotBlank(message = "不能为空") |
|
|
|
private String principalPhone; |
|
|
|
|
|
|
|
@Excel(name = "创建时间", needMerge = true) |
|
|
|