门禁卡 新增审核意见
This commit is contained in:
parent
3cb079d82e
commit
013b160bfa
|
|
@ -354,6 +354,12 @@ public class CardVo implements Serializable{
|
||||||
*/
|
*/
|
||||||
private String batchDescription;
|
private String batchDescription;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 审核备注
|
||||||
|
*/
|
||||||
|
private String examineOpinion;
|
||||||
|
|
||||||
public String getUserName() {
|
public String getUserName() {
|
||||||
return userName;
|
return userName;
|
||||||
}
|
}
|
||||||
|
|
@ -384,6 +390,12 @@ public class CardVo implements Serializable{
|
||||||
public void setBatchDescription(String batchDescription) {
|
public void setBatchDescription(String batchDescription) {
|
||||||
this.batchDescription = batchDescription;
|
this.batchDescription = batchDescription;
|
||||||
}
|
}
|
||||||
|
public String getExamineOpinion() {
|
||||||
|
return examineOpinion;
|
||||||
|
}
|
||||||
|
public void setExamineOpinion(String examineOpinion) {
|
||||||
|
this.examineOpinion = examineOpinion;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -769,7 +769,8 @@ public class NewCardService {
|
||||||
parameter.add(vo.getDataId());
|
parameter.add(vo.getDataId());
|
||||||
String sql = " SELECT USER_NAME AS \"userName\",EXAMINE_STATE AS \"examineState\","
|
String sql = " SELECT USER_NAME AS \"userName\",EXAMINE_STATE AS \"examineState\","
|
||||||
+ " EXAMINE_TIME AS \"examineTime\",EXAMINE_BATCH AS \"examineBatch\","
|
+ " 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";
|
+ " WHERE DEL_FLAG = '0' and CARD_ID = ? ORDER BY EXAMINE_BATCH ASC";
|
||||||
dataList = iHibernateDao.queryForListWithSql(sql.toString(), parameter.toArray(),
|
dataList = iHibernateDao.queryForListWithSql(sql.toString(), parameter.toArray(),
|
||||||
new BeanPropertyRowMapper<CardVo.AuditVo>(CardVo.AuditVo.class));
|
new BeanPropertyRowMapper<CardVo.AuditVo>(CardVo.AuditVo.class));
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue