Commit 7971480c authored by 韩桐桐's avatar 韩桐桐

fix(jg):单位变更列表查询修改

parent 82aa73a3
......@@ -39,6 +39,9 @@ public class JgChangeRegistrationUnitDto extends BaseDto {
@JsonSerialize(using = BizCustomDateSerializer.class)
private Date applyDate;
@ApiModelProperty(value = "列表搜索接收申请日期时使用")
private String applicationDate;
@ApiModelProperty(value = "办理状态")
private String auditStatus;
......
......@@ -63,8 +63,8 @@
<if test="param.receiveCompanyCode != null and param.receiveCompanyCode != ''">
AND isn.receive_company_code = #{param.receiveCompanyCode}
</if>
<if test="param.applyDate != null and param.applyDate != ''">
AND isn.apply_date like concat('%',DATE_FORMAT(#{param.applyDate},'%Y-%m-%d'),'%')
<if test="param.applicationDate != null and param.applicationDate != ''">
AND isn.apply_date like concat('%',DATE_FORMAT(#{param.applicationDate},'%Y-%m-%d'),'%')
</if>
<if test="param.useRegistCode != null and param.useRegistCode != ''">
AND isn.use_regist_code like concat('%',#{param.useRegistCode},'%')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment