Compare commits

..

No commits in common. "5b9b503f333ade5c4ae9901a4299f4250c6fcb82" and "1351a9a0753f86a7e155d94ea7f7211f1fbba68b" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

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

View File

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