增加流程发文时间的字段显示

release_1.0.0
liu 8 months ago
parent 2ed247bbdd
commit 6969ea36e7

@ -37,6 +37,8 @@ public class KnowledgeFlowResVO {
private String submitUserId;
@Schema(description = "报送时间")
private LocalDate submitDate;
@Schema(description = "发文时间")
private LocalDate publishDate;
@Schema(description = "知识来源 1人工提报")
private String knowledgeFrom;

@ -38,6 +38,7 @@
t2.status as status,
t2.title as title,
t1.flow_type as flowType,
t3.publish_date as publishDate,
t2.publish_dept_id as publishDeptId,
t2.submit_dept_id as submitDeptId,
t1.submit_user_id as submitUserId,
@ -88,6 +89,7 @@
t1.flow_type as flowType,
t2.publish_dept_id as publishDeptId,
t1.submit_dept_id as submitDeptId,
t3.publish_date as publishDate,
t1.submit_user_id as submitUserId,
t2.knowledge_from as knowledgeFrom,
t2.create_time as submitDate

Loading…
Cancel
Save