Merge #63 into master from cc_20260313_standard

feat:新增筛选

* cc_20260313_standard: (1 commits squashed)

  - feat:新增筛选

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/63
This commit is contained in:
正新
2026-03-13 14:53:25 +00:00
parent 70b41d6783
commit f1f0295906
2 changed files with 6 additions and 0 deletions

View File

@@ -345,6 +345,9 @@
<if test="request.investmentManagerUserId != null and request.investmentManagerUserId != ''">
and a.investment_manager = #{request.investmentManagerUserId}
</if>
<if test="request.useStandardStore != null ">
and a.use_standard_store = #{request.useStandardStore}
</if>
<if test="request.openTimeStart != null ">
and DATE_ADD(a.create_time, INTERVAL 50 DAY) >= #{request.openTimeStart}
</if>

View File

@@ -44,6 +44,9 @@ public class BranchShopRequest extends PageBasicInfo{
@NotNull
private Integer flag;
@ApiModelProperty("使用标准店型")
private Integer useStandardStore;
@ApiModelProperty("合同开始时间")
private Date contractStartTime;
@ApiModelProperty("合同结束时间")