From 013b160bfae4cc5dc8ee5ce4fb4f72577b19add4 Mon Sep 17 00:00:00 2001 From: cwchen <1048842385@qq.com> Date: Fri, 14 Mar 2025 15:04:26 +0800 Subject: [PATCH] =?UTF-8?q?=E9=97=A8=E7=A6=81=E5=8D=A1=20=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=E5=AE=A1=E6=A0=B8=E6=84=8F=E8=A7=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/com/jysoft/card/entity/vo/CardVo.java | 12 ++++++++++++ .../src/com/jysoft/card/service/NewCardService.java | 3 ++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/greenH5modul/src/com/jysoft/card/entity/vo/CardVo.java b/greenH5modul/src/com/jysoft/card/entity/vo/CardVo.java index 8174375..5329351 100644 --- a/greenH5modul/src/com/jysoft/card/entity/vo/CardVo.java +++ b/greenH5modul/src/com/jysoft/card/entity/vo/CardVo.java @@ -354,6 +354,12 @@ public class CardVo implements Serializable{ */ private String batchDescription; + + /** + * 审核备注 + */ + private String examineOpinion; + public String getUserName() { return userName; } @@ -384,6 +390,12 @@ public class CardVo implements Serializable{ public void setBatchDescription(String batchDescription) { this.batchDescription = batchDescription; } + public String getExamineOpinion() { + return examineOpinion; + } + public void setExamineOpinion(String examineOpinion) { + this.examineOpinion = examineOpinion; + } diff --git a/greenH5modul/src/com/jysoft/card/service/NewCardService.java b/greenH5modul/src/com/jysoft/card/service/NewCardService.java index 01f5da6..32430c9 100644 --- a/greenH5modul/src/com/jysoft/card/service/NewCardService.java +++ b/greenH5modul/src/com/jysoft/card/service/NewCardService.java @@ -769,7 +769,8 @@ public class NewCardService { parameter.add(vo.getDataId()); String sql = " SELECT USER_NAME AS \"userName\",EXAMINE_STATE AS \"examineState\"," + " EXAMINE_TIME AS \"examineTime\",EXAMINE_BATCH AS \"examineBatch\"," - + " BATCH_DESCRIPTION AS \"batchDescription\"" + " FROM GREEN_CARD_EXAMINE " + + " BATCH_DESCRIPTION AS \"batchDescription\",EXAMINE_OPINION AS \"examineOpinion\"" + + " FROM GREEN_CARD_EXAMINE " + " WHERE DEL_FLAG = '0' and CARD_ID = ? ORDER BY EXAMINE_BATCH ASC"; dataList = iHibernateDao.queryForListWithSql(sql.toString(), parameter.toArray(), new BeanPropertyRowMapper(CardVo.AuditVo.class));