|
@@ -35,7 +35,7 @@ public class SpecialEquipmentUrgingServiceImpl implements UrgingService {
|
|
|
public static final String MAIL_CONTENT = " 您好!【%s】提醒您,有如下特种设备即将年检到期,请尽快处理!\n" +
|
|
|
"%s" +
|
|
|
"\n详见安全生产平台,如果无法点击请复制链接到浏览器中:http://192.168.100.78/#/page/lr/9329c07dd31b4b8b95d4decaa021adc3";
|
|
|
- public static final String MAIL_CONTENT_ITEM = " %d、设备类型:【%s】,设备编号:【%s】,设备名称:【%s】,检验日期:【%tF】";
|
|
|
+ public static final String MAIL_CONTENT_ITEM = " %d、设备类型:【%s】,出厂编号:【%s】,设备名称:【%s】,检验日期:【%tF】";
|
|
|
public static final List<String> ROLE_CODE_LIST = new ArrayList<String>() {{
|
|
|
add("code-safe");
|
|
|
add("role031");
|
|
@@ -88,7 +88,7 @@ public class SpecialEquipmentUrgingServiceImpl implements UrgingService {
|
|
|
.findFirst()
|
|
|
.orElse(null);
|
|
|
str.add(String.format(MAIL_CONTENT_ITEM, i + 1, sysDictDo == null ? "" : sysDictDo.getName(),
|
|
|
- checkItemsDo.getDevicecode(), checkItemsDo.getCheckitemname(),
|
|
|
+ checkItemsDo.getDeviceoutcode(), checkItemsDo.getCheckitemname(),
|
|
|
checkItemsDo.getNextcheckdate()));
|
|
|
}
|
|
|
|