fix 修复时间转化异常

This commit is contained in:
gssong
2026-03-20 10:18:09 +08:00
parent b67cd76e04
commit 3294f45968
2 changed files with 0 additions and 13 deletions

View File

@@ -248,8 +248,4 @@ public class FlowHisTaskVo implements Serializable {
this.cooperateTypeName = CooperateType.getValueByKey(cooperateType);
}
public String getCreateTime() {
return DateUtils.formatFriendlyTime(createTime);
}
}

View File

@@ -210,13 +210,4 @@ public class FlowTaskVo implements Serializable {
private String businessTitle;
//业务扩展信息结束
/**
* 获取友好格式的创建时间。
*
* @return 格式化后的创建时间
*/
public String getCreateTime() {
return DateUtils.formatFriendlyTime(createTime);
}
}