Merge #35 into master from cc_20260128_fix
feat:PC端分配装修团队列表:查询条件:支持“施工团队”查询 * cc_20260128_fix: (1 commits squashed) - feat:PC端分配装修团队列表:查询条件:支持“施工团队”查询 Signed-off-by: 正新 <accounts_6964c7bcd2a2c377c5bbd01b@mail.teambition.com> Merged-by: 正新 <accounts_6964c7bcd2a2c377c5bbd01b@mail.teambition.com> CR-link: https://codeup.aliyun.com/692ea314dec569489f6f167c/hangzhou/java/custom_zxjp/change/35
This commit is contained in:
@@ -52,6 +52,9 @@
|
||||
<if test="decorationDescStatus != null">
|
||||
AND zsda.decoration_desc_status = #{decorationDescStatus}
|
||||
</if>
|
||||
<if test="teamId != null">
|
||||
AND zsda.decoration_team_id = #{teamId}
|
||||
</if>
|
||||
<if test="wantShopAreaIds != null and wantShopAreaIds.size() > 0">
|
||||
and b.want_shop_area_id in
|
||||
<foreach collection="wantShopAreaIds" item="item" separator="," open="(" close=")">
|
||||
@@ -59,6 +62,7 @@
|
||||
</foreach>
|
||||
</if>
|
||||
</where>
|
||||
order by decoration_desc_status asc , updated_time desc
|
||||
</select>
|
||||
|
||||
|
||||
|
||||
@@ -35,4 +35,7 @@ public class DecorationListRequest extends PageBasicInfo {
|
||||
@ApiModelProperty("门店装修分配状态")
|
||||
private Integer decorationDescStatus;
|
||||
|
||||
@ApiModelProperty("装修团队ID")
|
||||
private Long teamId;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user