Commit 5fae6e1b authored by hongguangwu's avatar hongguangwu

MVP1.7.16-优化代码

parent f393a871
...@@ -210,8 +210,12 @@ public class FascUtil { ...@@ -210,8 +210,12 @@ public class FascUtil {
template.setSignTemplateId(signTemplateId); template.setSignTemplateId(signTemplateId);
template.setSignTemplateName(mainInfo.getSignTemplateName()); template.setSignTemplateName(mainInfo.getSignTemplateName());
template.setSignTemplateStatus(mainInfo.getSignTemplateStatus()); template.setSignTemplateStatus(mainInfo.getSignTemplateStatus());
if (Common.isNotNull(mainInfo.getCreateTime())) {
template.setFascCreateTime(LocalDateTimeUtils.coverStringToLDT(mainInfo.getCreateTime())); template.setFascCreateTime(LocalDateTimeUtils.coverStringToLDT(mainInfo.getCreateTime()));
template.setUpdateTime(LocalDateTimeUtils.coverStringToLDT(mainInfo.getUpdateTime())); }
if (Common.isNotNull(mainInfo.getUpdateTime())) {
template.setFascUpdateTime(LocalDateTimeUtils.coverStringToLDT(mainInfo.getUpdateTime()));
}
template.setCompanyId(company.getId()); template.setCompanyId(company.getId());
template.setCompanyName(company.getCompanyName()); template.setCompanyName(company.getCompanyName());
......
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