Commit 7a2754b7 authored by zhaji's avatar zhaji

"feature-zhaJi:优化减员办理查询字段,优化商险文件类型判断"

parent a050d457
...@@ -480,7 +480,7 @@ public class Common { ...@@ -480,7 +480,7 @@ public class Common {
* @param null * @param null
* @return * @return
**/ **/
private static final String insuranceSuffixList = "pdf|png|jpg|word|excel|rar|zip"; private static final String insuranceSuffixList = "pdf|png|jpg|doc|docx|xls|xlsx|rar|zip";
/** /**
* 判断是否为允许的上传文件类型,true表示允许 * 判断是否为允许的上传文件类型,true表示允许
......
...@@ -89,6 +89,12 @@ public class InsuranceRefundHandlingParam implements Serializable { ...@@ -89,6 +89,12 @@ public class InsuranceRefundHandlingParam implements Serializable {
@Schema(description = "办理人") @Schema(description = "办理人")
private String updateBy; private String updateBy;
/**
* 派单类型
*/
@Schema(description = "派单类型")
private String buyType;
/** /**
* 派单人 * 派单人
*/ */
...@@ -99,13 +105,13 @@ public class InsuranceRefundHandlingParam implements Serializable { ...@@ -99,13 +105,13 @@ public class InsuranceRefundHandlingParam implements Serializable {
* 派单开始时间 * 派单开始时间
*/ */
@Schema(description = "派单开始时间") @Schema(description = "派单开始时间")
private String createStartTime; private String startDate;
/** /**
* 派单结束时间 * 派单结束时间
*/ */
@Schema(description = "派单结束时间") @Schema(description = "派单结束时间")
private String createEndTime; private String endDate;
} }
...@@ -729,11 +729,11 @@ ...@@ -729,11 +729,11 @@
<if test="param.createName != null and param.createName.trim() != ''"> <if test="param.createName != null and param.createName.trim() != ''">
and refund.CREATE_NAME like concat('%',replace(replace(#{param.createName},'_','\_'),'%','\%'),'%') and refund.CREATE_NAME like concat('%',replace(replace(#{param.createName},'_','\_'),'%','\%'),'%')
</if> </if>
<if test="param.createStartTime != null and param.createStartTime.trim() != ''"> <if test="param.startDate != null and param.startDate.trim() != ''">
AND refund.CREATE_TIME <![CDATA[ >= ]]> concat(#{param.createStartTime}, ' 00:00:00') AND refund.CREATE_TIME <![CDATA[ >= ]]> concat(#{param.startDate}, ' 00:00:00')
</if> </if>
<if test="param.createEndTime != null and param.createEndTime.trim() != ''"> <if test="param.endDate != null and param.endDate.trim() != ''">
AND refund.CREATE_TIME <![CDATA[ <= ]]> concat(#{param.createEndTime}, ' 23:59:59') AND refund.CREATE_TIME <![CDATA[ <= ]]> concat(#{param.endDate}, ' 23:59:59')
</if> </if>
ORDER BY refund.CREATE_TIME DESC,detail.ID ASC ORDER BY refund.CREATE_TIME DESC,detail.ID ASC
</select> </select>
......
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