Commit 009b6122 authored by hongguangwu's avatar hongguangwu

MVP1.7.18-税友分支(添加查询条件)

parent e29218cf
......@@ -188,4 +188,23 @@ public class SocialHandleSearchVo extends TDispatchInfo {
@ExcelIgnore
private String backFileFlag;
/**
* 养工失税友的任务ID
*/
@Length(max = 50, message = "养工失税友的任务ID 不能超过50个字符" )
@ExcelAttribute(name = "养工失税友的任务ID", maxLength = 50)
@Schema(description = "养工失税友的任务ID" )
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty("养工失税友的任务ID" )
private String ygsRequestId;
/**
* 医生大税友的任务ID
*/
@Length(max = 50, message = "医生大税友的任务ID 不能超过50个字符" )
@ExcelAttribute(name = "医生大税友的任务ID", maxLength = 50)
@Schema(description = "医生大税友的任务ID" )
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty("医生大税友的任务ID" )
private String ysdRequestId;
}
......@@ -2221,6 +2221,13 @@
AND s.YSD_REMARK like concat('%',#{tDispatchInfo.ysdRemark},'%')
</if>
<if test="tDispatchInfo.ygsRequestId != null and tDispatchInfo.ygsRequestId.trim() != ''">
AND s.YGS_REQUEST_ID = #{tDispatchInfo.ygsRequestId}
</if>
<if test="tDispatchInfo.ysdRequestId != null and tDispatchInfo.ysdRequestId.trim() != ''">
AND s.YSD_REQUEST_ID = #{tDispatchInfo.ysdRequestId}
</if>
<if test="tDispatchInfo.ygsYsdHandleStatusArr != null and tDispatchInfo.ygsYsdHandleStatusArr.length > 0">
AND (
s.YGS_HANDLE_STATUS in
......@@ -2270,6 +2277,13 @@
AND s.YSD_REMARK like concat('%',#{tDispatchInfo.ysdRemark},'%')
</if>
<if test="tDispatchInfo.ygsRequestId != null and tDispatchInfo.ygsRequestId.trim() != ''">
AND s.YGS_REQUEST_ID = #{tDispatchInfo.ygsRequestId}
</if>
<if test="tDispatchInfo.ysdRequestId != null and tDispatchInfo.ysdRequestId.trim() != ''">
AND s.YSD_REQUEST_ID = #{tDispatchInfo.ysdRequestId}
</if>
<if test="tDispatchInfo.ygsYsdHandleStatusArr != null and tDispatchInfo.ygsYsdHandleStatusArr.length > 0">
AND (
s.YGS_HANDLE_STATUS in
......
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