update 86971 功能安全中心成员 导入导出时 合并单元格
This commit is contained in:
+20
-19
@@ -44,7 +44,7 @@ public class SafetyCenterSubitem {
|
|||||||
*/
|
*/
|
||||||
@TableField(value = "company_id")
|
@TableField(value = "company_id")
|
||||||
@ApiModelProperty(value = "成员单位id")
|
@ApiModelProperty(value = "成员单位id")
|
||||||
@Excel(name = "成员单位", width = 15, dictTable = "pay_company_management", dicText = "company_name", dicCode = "id")
|
@Excel(name = "成员单位", width = 15, dictTable = "pay_company_management", dicText = "company_name", dicCode = "id", needMerge = true)
|
||||||
@Dict(dictTable = "pay_company_management", dicText = "company_name", dicCode = "id")
|
@Dict(dictTable = "pay_company_management", dicText = "company_name", dicCode = "id")
|
||||||
private String companyId;
|
private String companyId;
|
||||||
/**
|
/**
|
||||||
@@ -54,29 +54,12 @@ public class SafetyCenterSubitem {
|
|||||||
@ApiModelProperty(value = "成员单位名称")
|
@ApiModelProperty(value = "成员单位名称")
|
||||||
private String companyName;
|
private String companyName;
|
||||||
|
|
||||||
/**企业联系人id*/
|
|
||||||
@TableField(exist = false)
|
|
||||||
@ApiModelProperty(value = "企业联系人id")
|
|
||||||
@Dict(dictTable = "pay_contacts_management", dicText = "name", dicCode = "id")
|
|
||||||
private String contactsId;
|
|
||||||
|
|
||||||
/**企业联系人姓名*/
|
|
||||||
@TableField(exist = false)
|
|
||||||
@ApiModelProperty(value = "企业联系人姓名")
|
|
||||||
private String contactsName;
|
|
||||||
|
|
||||||
/**企业联系人列表*/
|
|
||||||
@TableField(exist = false)
|
|
||||||
@ApiModelProperty(value = "企业联系人列表")
|
|
||||||
@ExcelCollection(name = "企业联系人列表")
|
|
||||||
private List<SafetyCenterSubitemContacts> contactsList;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 备注
|
* 备注
|
||||||
*/
|
*/
|
||||||
@TableField(value = "remarks")
|
@TableField(value = "remarks")
|
||||||
@ApiModelProperty(value = "备注")
|
@ApiModelProperty(value = "备注")
|
||||||
@Excel(name = "备注")
|
@Excel(name = "备注", needMerge = true)
|
||||||
private String remarks;
|
private String remarks;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -107,6 +90,24 @@ public class SafetyCenterSubitem {
|
|||||||
@ApiModelProperty(value = "更新时间")
|
@ApiModelProperty(value = "更新时间")
|
||||||
private Date updateTime;
|
private Date updateTime;
|
||||||
|
|
||||||
|
/**企业联系人id*/
|
||||||
|
@TableField(exist = false)
|
||||||
|
@ApiModelProperty(value = "企业联系人id")
|
||||||
|
@Dict(dictTable = "pay_contacts_management", dicText = "name", dicCode = "id")
|
||||||
|
private String contactsId;
|
||||||
|
|
||||||
|
/**企业联系人姓名*/
|
||||||
|
@TableField(exist = false)
|
||||||
|
@ApiModelProperty(value = "企业联系人姓名")
|
||||||
|
private String contactsName;
|
||||||
|
|
||||||
|
/**企业联系人列表*/
|
||||||
|
@TableField(exist = false)
|
||||||
|
@ApiModelProperty(value = "企业联系人列表")
|
||||||
|
@ExcelCollection(name = "企业联系人列表")
|
||||||
|
private List<SafetyCenterSubitemContacts> contactsList;
|
||||||
|
|
||||||
|
|
||||||
/**已提醒*/
|
/**已提醒*/
|
||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
@Dict(dicCode = "yn")
|
@Dict(dicCode = "yn")
|
||||||
|
|||||||
+9
-7
@@ -20,9 +20,17 @@ public class SafetyCenterSubitemImport {
|
|||||||
* 成员单位
|
* 成员单位
|
||||||
*/
|
*/
|
||||||
@ApiModelProperty(value = "成员单位")
|
@ApiModelProperty(value = "成员单位")
|
||||||
@Excel(name = "成员单位")
|
@Excel(name = "成员单位", needMerge = true)
|
||||||
private String companyName;
|
private String companyName;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 备注
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "备注")
|
||||||
|
@Excel(name = "备注", needMerge = true)
|
||||||
|
private String remarks;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 企业联系人列表
|
* 企业联系人列表
|
||||||
*/
|
*/
|
||||||
@@ -30,11 +38,5 @@ public class SafetyCenterSubitemImport {
|
|||||||
@ExcelCollection(name = "企业联系人列表")
|
@ExcelCollection(name = "企业联系人列表")
|
||||||
private List<SafetyCenterSubitemContactsImport> contactsList;
|
private List<SafetyCenterSubitemContactsImport> contactsList;
|
||||||
|
|
||||||
/**
|
|
||||||
* 备注
|
|
||||||
*/
|
|
||||||
@ApiModelProperty(value = "备注")
|
|
||||||
@Excel(name = "备注")
|
|
||||||
private String remarks;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user