提交 e35904ff 作者: 刘明祎-运维用途

Merge branch 'develop'

流水线 #7977 已通过 于阶段
in 2 分 28 秒
...@@ -18,4 +18,4 @@ patches: ...@@ -18,4 +18,4 @@ patches:
images: images:
- name: REGISTRY/NAMESPACE/IMAGE:TAG - name: REGISTRY/NAMESPACE/IMAGE:TAG
newName: mmc-registry.cn-shenzhen.cr.aliyuncs.com/sharefly-dev/pms newName: mmc-registry.cn-shenzhen.cr.aliyuncs.com/sharefly-dev/pms
newTag: b89a1fddfb594fdf872dec5aa2ef0722094ca463 newTag: 72a00d892bf3e44f20d3a0b01aa69de883c827b0
...@@ -41,6 +41,9 @@ public class LeaseGoodsQO implements Serializable { ...@@ -41,6 +41,9 @@ public class LeaseGoodsQO implements Serializable {
private String districtCode; private String districtCode;
@ApiModelProperty(value = "型号id")
private Integer modelInfoId;
@ApiModelProperty(value = "页码", required = true) @ApiModelProperty(value = "页码", required = true)
@NotNull(message = "页码不能为空", groups = Page.class) @NotNull(message = "页码不能为空", groups = Page.class)
@Min(value = 1, groups = Page.class) @Min(value = 1, groups = Page.class)
......
...@@ -438,6 +438,9 @@ ...@@ -438,6 +438,9 @@
<if test="districtCode != null and districtCode != ''"> <if test="districtCode != null and districtCode != ''">
and district_code = #{districtCode} and district_code = #{districtCode}
</if> </if>
<if test="modeInfoId != null and modeInfoId != ''">
and device_mode_id = #{modeInfoId}
</if>
</where> </where>
</select> </select>
<select id="listLeaseGoodsByApp" resultMap="leaseGoodsMap"> <select id="listLeaseGoodsByApp" resultMap="leaseGoodsMap">
...@@ -484,6 +487,9 @@ ...@@ -484,6 +487,9 @@
<if test="districtCode != null and districtCode != ''"> <if test="districtCode != null and districtCode != ''">
and district_code = #{districtCode} and district_code = #{districtCode}
</if> </if>
<if test="modeInfoId != null and modeInfoId != ''">
and device_mode_id = #{modeInfoId}
</if>
</where> </where>
order by lg.shelf_status DESC, lg.sort DESC order by lg.shelf_status DESC, lg.sort DESC
</select> </select>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论