pull/5/head^2
perry 2023-05-30 19:36:05 +08:00
parent 819e2e20d2
commit e6cad45706
2 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ public class PromoterDrawReqVO extends PageParam {
private Long tenantId;
@Schema(description = "组织名称")
@Schema(description = "商户名称")
private String deptName;
@Schema(description = "组织结构名称")
private String parentOrganizationName;

View File

@ -40,10 +40,10 @@
<if test="data.nickname!=null and data.nickname!=''">
and d.nickname=#{data.nickname}
</if>
<if test="data.createTime !=null ">
<if test="data.createTime !=null and data.createTime.length>=1">
and a.create_time &gt;=#{data.createTime[0]}
</if>
<if test="data.createTime !=null ">
<if test="data.createTime !=null and data.createTime.length>=2">
and a.create_time &lt;=#{data.createTime[1]}
</if>
</where>