Browse Source

审核ID添加

master
zxc 5 years ago
parent
commit
617f742239
  1. 3
      epmet-module/data-aggregator/data-aggregator-client/src/main/java/com/epmet/dataaggre/dto/govissue/result/IssueListResultDTO.java
  2. 1
      epmet-module/data-aggregator/data-aggregator-server/src/main/resources/mapper/govissue/IssueApplicationDao.xml

3
epmet-module/data-aggregator/data-aggregator-client/src/main/java/com/epmet/dataaggre/dto/govissue/result/IssueListResultDTO.java

@ -101,6 +101,8 @@ public class IssueListResultDTO implements Serializable {
*/
private List<String> currentDepartment;
private String issueApplicationId;
@JsonIgnore
private Long operationTime;
@ -123,5 +125,6 @@ public class IssueListResultDTO implements Serializable {
this.currentDepartment = new ArrayList<>();
this.projectId = "";
this.issueClosedTime = 0L;
this.issueApplicationId = "";
}
}

1
epmet-module/data-aggregator/data-aggregator-server/src/main/resources/mapper/govissue/IssueApplicationDao.xml

@ -6,6 +6,7 @@
<!-- 查询被拒绝的议题 -->
<select id="issueStatusRejected" resultType="com.epmet.dataaggre.dto.govissue.result.IssueListResultDTO">
SELECT
ia.ID AS issueApplicationId,
UNIX_TIMESTAMP(iah.CREATED_TIME) AS rejectedTime,
ia.ISSUE_TITLE,
ia.TOPIC_ID,

Loading…
Cancel
Save