|
|
@ -17,26 +17,26 @@ public class EnterpriseImportExcelDTO { |
|
|
|
* 场所类型名称 |
|
|
|
*/ |
|
|
|
@NotBlank(message = "场所类型不能为空") |
|
|
|
@ExcelProperty(value = "*场所类型") |
|
|
|
@ExcelProperty(value = "场所类型") |
|
|
|
private String placeTypeName; |
|
|
|
|
|
|
|
|
|
|
|
@NotBlank(message = "场所区域不能为空") |
|
|
|
@ExcelProperty(value = "*场所区域") |
|
|
|
@ExcelProperty(value = "场所区域") |
|
|
|
private String gridName; |
|
|
|
|
|
|
|
/** |
|
|
|
* 场所名称 |
|
|
|
*/ |
|
|
|
@NotBlank(message = "场所名称不能为空") |
|
|
|
@ExcelProperty(value = "*场所名称") |
|
|
|
@ExcelProperty(value = "场所名称") |
|
|
|
private String placeOrgName; |
|
|
|
|
|
|
|
/** |
|
|
|
* 场所地址 |
|
|
|
*/ |
|
|
|
@NotBlank(message = "场所地址不能为空") |
|
|
|
@ExcelProperty(value = "*场所地址") |
|
|
|
@ExcelProperty(value = "场所地址") |
|
|
|
private String address; |
|
|
|
|
|
|
|
/** |
|
|
@ -48,21 +48,21 @@ public class EnterpriseImportExcelDTO { |
|
|
|
* 4:100人以上】 |
|
|
|
*/ |
|
|
|
@NotBlank(message = "规模不能为空") |
|
|
|
@ExcelProperty(value = "*规模") |
|
|
|
@ExcelProperty(value = "规模") |
|
|
|
private String scaleName; |
|
|
|
|
|
|
|
/** |
|
|
|
* 场所负责人 |
|
|
|
*/ |
|
|
|
@NotBlank(message = "负责人不能为空") |
|
|
|
@ExcelProperty(value = "*负责人") |
|
|
|
@ExcelProperty(value = "负责人") |
|
|
|
private String personInCharge; |
|
|
|
|
|
|
|
/** |
|
|
|
* 负责人电话 |
|
|
|
*/ |
|
|
|
@NotBlank(message = "联系电话不能为空") |
|
|
|
@ExcelProperty(value = "*联系电话") |
|
|
|
@ExcelProperty(value = "联系电话") |
|
|
|
private String mobile; |
|
|
|
|
|
|
|
@Data |
|
|
|