| | |
| | | <result column="type" property="type" /> |
| | | <result column="state" property="state" /> |
| | | </resultMap> |
| | | <select id="queryNewWork" resultType="com.stylefeng.guns.modular.system.model.DriverWork"> |
| | | select |
| | | id as id, |
| | | driverId as driverId, |
| | | startTime as startTime, |
| | | endTime as endTime, |
| | | `type` as `type`, |
| | | state as state |
| | | from t_driver_work where 1 = 1 |
| | | <if test="null != driverId"> |
| | | and driverId = #{driverId} |
| | | </if> |
| | | <if test="null != type"> |
| | | and type like CONCAT('%', #{type}, '%') |
| | | </if> |
| | | <if test="null != state"> |
| | | and state = #{state} |
| | | </if> |
| | | order by startTime desc limit 0,1 |
| | | </select> |
| | | </mapper> |