Merge remote-tracking branch 'origin/wb' into qa
|  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "开始时间") | 
|---|
|  |  |  | private String startTime; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "单号") | 
|---|
|  |  |  | private String allocationNum; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "结束时间") | 
|---|
|  |  |  | private String endTime; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | @ApiModel(value="AllocationExtension - 分页查询对象", description="AllocationExtension - 分页查询对象") | 
|---|
|  |  |  | public class AllocationExtensionPageCond implements Serializable{ | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "单号") | 
|---|
|  |  |  | private String allocationNum; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "责任单位id") | 
|---|
|  |  |  | private Integer unitId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | <if test="allocation.endTime != null and allocation.endTime !='' "> | 
|---|
|  |  |  | and date(t1.escalation_time) <![CDATA[<=]]>  #{allocation.endTime} | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | <if test="allocation.allocationNum != null and allocation.allocationNum !='' "> | 
|---|
|  |  |  | and allocation.allocation_num LIKE CONCAT('%',#{allocation.allocationNum},'%') | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | <if test="allocation.unitList != null and allocation.unitList.size !=0"> | 
|---|
|  |  |  | and t1.unit_id in | 
|---|
|  |  |  | <foreach collection="allocation.unitList" item="id" index="index" open="(" close=")" separator=","> | 
|---|
|  |  |  | 
|---|
|  |  |  | <if test="allocation.endTime != null and allocation.endTime !='' "> | 
|---|
|  |  |  | and date(allocation.escalation_time) <![CDATA[<=]]>  #{allocation.endTime} | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | <if test="allocation.allocationNum != null and allocation.allocationNum !='' "> | 
|---|
|  |  |  | and allocation.allocation_num LIKE CONCAT('%',#{allocation.allocationNum},'%') | 
|---|
|  |  |  | </if> | 
|---|
|  |  |  | <if test="allocation.unitList != null and allocation.unitList.size !=0"> | 
|---|
|  |  |  | and allocation.unit_id in | 
|---|
|  |  |  | <foreach collection="allocation.unitList" item="id" index="index" open="(" close=")" separator=","> | 
|---|