Browse Source

fix:[资源库管理]优化

master
15881625488@163.com 2 weeks ago
parent
commit
4fa1838e6e
2 changed files with 23 additions and 1 deletions
  1. +22
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/dto/mjy/FfjlListDto.java
  2. +1
    -1
      hxhq-modules/hxhq-system/src/main/resources/mapper/business/MjyFfjlMapper.xml

+ 22
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/dto/mjy/FfjlListDto.java View File

@ -34,6 +34,12 @@ public class FfjlListDto {
/** 出库量单位 */
private String ckldw;
/** 出库量 */
private String jsl;
/** 出库量单位 */
private String jsldw;
/** 入库量 */
private String rkl;
@ -106,6 +112,22 @@ public class FfjlListDto {
/** 归档申请人id */
private Long gdsqrId;
public String getJsl() {
return jsl;
}
public void setJsl(String jsl) {
this.jsl = jsl;
}
public String getJsldw() {
return jsldw;
}
public void setJsldw(String jsldw) {
this.jsldw = jsldw;
}
public Long getGdsqrId() {
return gdsqrId;
}

+ 1
- 1
hxhq-modules/hxhq-system/src/main/resources/mapper/business/MjyFfjlMapper.xml View File

@ -5,7 +5,7 @@
<mapper namespace="com.hxhq.business.mapper.MjyFfjlMapper">
<select id="queryList" resultType="com.hxhq.business.dto.mjy.FfjlListDto">
select t.id,t.mc,t.bh,t.ffzytj,t.ffrq,t.ghrq,t.ckl,t.ckldw,t.rkl,t.rkldw,t.ckmz,t.ckmzdw,t.lqr1_mc,t.lqr2_mc,t.ffr1_mc,t.ffr2_mc,t.jsr1_mc,t.jsr2_mc,t.rkmz,t.rkmzdw
,t.syl,t.syldw,t.jlzt,t.jyzt,t.md_other,t.jyksrq,t.jyjsrq,t.gdsqr_id
,t.syl,t.syldw,t.jlzt,t.jyzt,t.md_other,t.jyksrq,t.jyjsrq,t.jsl,t.jsldw,t.gdsqr_id
,z.mc as zcgMc,
(select GROUP_CONCAT(s.name) from t_study s where find_in_set(s.id, t.`md_ids`)) as mdMcs
FROM `t_mjy_ffjl` t

Loading…
Cancel
Save