Merge remote-tracking branch 'origin/main'
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
package com.ruoyi.cms.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
@@ -48,4 +49,9 @@ public class JobExcelImportRecord extends BaseEntity {
|
||||
@Excel(name = "失败原因")
|
||||
@ApiModelProperty("失败原因")
|
||||
private String failedReason;
|
||||
|
||||
@TableField(exist = false)
|
||||
private String beginTime;
|
||||
@TableField(exist = false)
|
||||
private String endTime;
|
||||
}
|
||||
@@ -39,16 +39,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<include refid="selectShzJobExcelImportRecordVo"/>
|
||||
<where> del_flag='0'
|
||||
<if test="fileName != null and fileName != ''">
|
||||
and file_name like concat('%',#{fileName},'%')
|
||||
and file_name like '%' || #{fileName} || '%'
|
||||
</if>
|
||||
<if test="storageResult != null and storageResult != ''">
|
||||
and storage_result like concat('%',#{storageResult},'%')
|
||||
and storage_result like '%' || #{storageResult} || '%'
|
||||
</if>
|
||||
<if test="params.beginTime != null and params.beginTime != ''">
|
||||
and create_time >= #{params.beginTime}
|
||||
<if test="beginTime != null and beginTime != ''">
|
||||
and create_time >= #{beginTime}
|
||||
</if>
|
||||
<if test="params.endTime != null and params.endTime != ''">
|
||||
and create_time <= #{params.endTime}
|
||||
<if test="endTime != null and endTime != ''">
|
||||
and create_time <= #{endTime}
|
||||
</if>
|
||||
</where>
|
||||
order by create_time desc
|
||||
|
||||
@@ -228,7 +228,7 @@
|
||||
<if test="applyNum != null "> and apply_num = #{applyNum}</if>
|
||||
<if test="code != null "> and company_id in(select company_id from company where code=#{code})</if>
|
||||
<if test="jobStatus != null "> and job_status = #{jobStatus}</if>
|
||||
<if test="createBy != null and createBy!=null"> and create_by = #{createBy}</if>
|
||||
<if test="createBy != null and createBy!='' "> and (create_by = #{createBy} or update_by = #{createBy})</if>
|
||||
<if test="compensation!=null ">
|
||||
<if test="compensation==0 ">
|
||||
and min_salary < 1750
|
||||
|
||||
Reference in New Issue
Block a user