Administrator
2021-08-10 c8ebf3038d2a7f69d9eb40f5a276dc3fa826fa9b
src/main/java/org/springblade/modules/dispatcher/mapper/DispatcherMapper.xml
@@ -15,7 +15,7 @@
    <!--派遣记录分页数据-->
    <select id="selectDispatcherPage" resultType="org.springblade.modules.dispatcher.vo.DispatcherVO">
        select
            sd.*,sdu.name dispatcherCompany
            sd.*,sd.name securityName,sdu.name dispatcherCompany
        from
            sys_dispatcher sd
        left join
@@ -29,6 +29,9 @@
        <if test="dispatcher.deptId!=null">
            and sd.dept_id = #{dispatcher.deptId}
        </if>
        <if test="dispatcher.userIds!=null and  dispatcher.userIds!=''">
            and sd.user_ids like concat('%', #{dispatcher.userIds},'%')
        </if>
        <if test="dispatcher.name!=null and  dispatcher.name!=''">
            and sd.name like concat('%', #{dispatcher.name},'%')
        </if>
@@ -38,6 +41,12 @@
        <if test="dispatcher.dispatcherCompany!=null and  dispatcher.dispatcherCompany!=''">
            and sdu.name like concat('%', #{dispatcher.dispatcherCompany},'%')
        </if>
        <if test="dispatcher.beginTime!=null and  dispatcher.beginTime!=''">
            and sd.dispatcherTime &gt;  #{dispatcher.beginTime}
        </if>
        <if test="dispatcher.overTime!=null and  dispatcher.overTime!=''">
            and sd.end_time &lt;  #{dispatcher.overTime}
        </if>
    </select>
    <!--派遣记录详情-->