Commit bda2d878 authored by 赵啸非's avatar 赵啸非

添加水印图片

parent ada675ae
...@@ -75,9 +75,7 @@ public class CertificateIndustryServiceImpl extends AbstractCRUDServiceImpl<Cert ...@@ -75,9 +75,7 @@ public class CertificateIndustryServiceImpl extends AbstractCRUDServiceImpl<Cert
* @param oldAncestors 旧的父ID集合 * @param oldAncestors 旧的父ID集合
*/ */
public void updateCertificateIndustryChildren(Long certificateIndustryId, String newAncestors, String oldAncestors, Context context) { public void updateCertificateIndustryChildren(Long certificateIndustryId, String newAncestors, String oldAncestors, Context context) {
List<CertificateIndustryEntity> children = getDao().selectChildrenCertificateIndustryById(certificateIndustryId.toString()); List<CertificateIndustryEntity> children = getDao().selectChildrenCertificateIndustryById(certificateIndustryId.toString());
for (CertificateIndustryEntity child : children) { for (CertificateIndustryEntity child : children) {
child.setAncestors(child.getAncestors().replace(oldAncestors, newAncestors)); child.setAncestors(child.getAncestors().replace(oldAncestors, newAncestors));
} }
......
...@@ -119,9 +119,6 @@ public class ChildLicenseController extends BaseCRUDJsonBodyMappingController<Ch ...@@ -119,9 +119,6 @@ public class ChildLicenseController extends BaseCRUDJsonBodyMappingController<Ch
childLicenseEntity.setReportUserName(this.getContext().getUser().getRealName()); childLicenseEntity.setReportUserName(this.getContext().getUser().getRealName());
childLicenseEntity.setReportTime(new Date()); childLicenseEntity.setReportTime(new Date());
childLicenseEntity.setProcessStatus(ProcessStatusEnum.已处理.getValue()); childLicenseEntity.setProcessStatus(ProcessStatusEnum.已处理.getValue());
childLicenseEntity.setFormContent("");
childLicenseEntity.setFormStyleContent("");
this.service.update(childLicenseEntity, getContext()); this.service.update(childLicenseEntity, getContext());
recordSysLog(request, busiDesc + " 【成功】"); recordSysLog(request, busiDesc + " 【成功】");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment