|
|
|
@ -58,7 +58,7 @@ public class EhsLawEnforcementServiceImpl extends ServiceImpl<EhsLawEnforcementM
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public String importData(List<LawEnforceImportTemplate> list, Boolean updateSupport, Long params) throws Exception {
|
|
|
|
|
public String importData(List<EhsLawEnforcement> list, Boolean updateSupport, Long params) throws Exception {
|
|
|
|
|
if (StringUtils.isNull(list) || list.size() == 0) {
|
|
|
|
|
throw new Exception("导入行政执法台账数据不能为空!");
|
|
|
|
|
}
|
|
|
|
@ -67,7 +67,7 @@ public class EhsLawEnforcementServiceImpl extends ServiceImpl<EhsLawEnforcementM
|
|
|
|
|
|
|
|
|
|
StringBuilder successMsg = new StringBuilder();
|
|
|
|
|
StringBuilder failureMsg = new StringBuilder();
|
|
|
|
|
for (LawEnforceImportTemplate lawEnforceImportTemplate : list) {
|
|
|
|
|
for (EhsLawEnforcement item : list) {
|
|
|
|
|
|
|
|
|
|
EhsLawEnforcement temp = new EhsLawEnforcement();
|
|
|
|
|
/**
|
|
|
|
@ -75,20 +75,20 @@ public class EhsLawEnforcementServiceImpl extends ServiceImpl<EhsLawEnforcementM
|
|
|
|
|
* 如果id是整数,并且自动递增,那么无需设置id
|
|
|
|
|
*/
|
|
|
|
|
// temp.setId(IdUtils.fastSimpleUUID());
|
|
|
|
|
temp.setEnterpriseName(lawEnforceImportTemplate.getEnterpriseName());// 单位名称
|
|
|
|
|
temp.setLocation(lawEnforceImportTemplate.getLocation());// 地址
|
|
|
|
|
temp.setResponsiblePerson(lawEnforceImportTemplate.getResponsiblePerson());// 负责人
|
|
|
|
|
temp.setPhone(lawEnforceImportTemplate.getPhone());// 联系电话
|
|
|
|
|
temp.setRisk(lawEnforceImportTemplate.getRisk());// 存在隐患
|
|
|
|
|
temp.setIsLargeRisk(lawEnforceImportTemplate.getIsLargeRisk().toUpperCase());// 是否重大隐患
|
|
|
|
|
temp.setRectificationMeasure(lawEnforceImportTemplate.getRectificationMeasure());// 整改措施
|
|
|
|
|
temp.setRectificationPeople(lawEnforceImportTemplate.getRectificationPeople());// 整改责任人
|
|
|
|
|
temp.setEnterpriseCategory(lawEnforceImportTemplate.getEnterpriseCategory());// 企业类别
|
|
|
|
|
temp.setEmployeeNum(lawEnforceImportTemplate.getEmployeeNum());// 企业人数
|
|
|
|
|
temp.setIsEstablishPrevention(lawEnforceImportTemplate.getIsEstablishPrevention().toUpperCase());// 是否建立双预防
|
|
|
|
|
temp.setTime(lawEnforceImportTemplate.getTime());// 时间
|
|
|
|
|
temp.setRemark(lawEnforceImportTemplate.getRemark());// 备注
|
|
|
|
|
temp.setOther(lawEnforceImportTemplate.getOther());// 其他
|
|
|
|
|
temp.setEnterpriseName(item.getEnterpriseName());// 单位名称
|
|
|
|
|
temp.setLocation(item.getLocation());// 地址
|
|
|
|
|
temp.setResponsiblePerson(item.getResponsiblePerson());// 负责人
|
|
|
|
|
temp.setPhone(item.getPhone());// 联系电话
|
|
|
|
|
temp.setRisk(item.getRisk());// 存在隐患
|
|
|
|
|
temp.setIsLargeRisk(item.getIsLargeRisk().toUpperCase());// 是否重大隐患
|
|
|
|
|
temp.setRectificationMeasure(item.getRectificationMeasure());// 整改措施
|
|
|
|
|
temp.setRectificationPeople(item.getRectificationPeople());// 整改责任人
|
|
|
|
|
temp.setEnterpriseCategory(item.getEnterpriseCategory());// 企业类别
|
|
|
|
|
temp.setEmployeeNum(item.getEmployeeNum());// 企业人数
|
|
|
|
|
temp.setIsEstablishPrevention(item.getIsEstablishPrevention().toUpperCase());// 是否建立双预防
|
|
|
|
|
temp.setTime(item.getTime());// 时间
|
|
|
|
|
temp.setRemark(item.getRemark());// 备注
|
|
|
|
|
temp.setOther(item.getOther());// 其他
|
|
|
|
|
temp.setClassFirst(params);// 类别
|
|
|
|
|
try {
|
|
|
|
|
//插入数据
|
|
|
|
|