Your ROOT_URL in app.ini is http://git.zky.com/ but you are visiting http://61.178.84.89:8998/luoluo/ry_zhky/commit/a8090b6ad04aa039cbf723a79c7e137053c373a3?style=split&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.
master
20918 1 year ago
parent aeb6ce5096
commit a8090b6ad0

@ -21,14 +21,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</resultMap> </resultMap>
<sql id="selectTdLeaveVo"> <sql id="selectTdLeaveVo">
select id, userId, userName, country, areaname, leavereason, depart, leavedate, workstate, leavestate, examinename, examinedate, examinestate from td_leave select id, user_id, user_name, country, areaname, leavereason, depart, leavedate, workstate, leavestate, examinename, examinedate, examinestate from td_leave
</sql> </sql>
<select id="selectTdLeaveList" parameterType="TdLeave" resultMap="TdLeaveResult"> <select id="selectTdLeaveList" parameterType="TdLeave" resultMap="TdLeaveResult">
<include refid="selectTdLeaveVo"/> <include refid="selectTdLeaveVo"/>
<where> <where>
<if test="userId != null and userId != ''"> and userId = #{userId}</if> <if test="userId != null and userId != ''"> and user_id = #{userId}</if>
<if test="userName != null and userName != ''"> and userName like concat('%', #{userName}, '%')</if> <if test="userName != null and userName != ''"> and user_name like concat('%', #{userName}, '%')</if>
<if test="country != null and country != ''"> and country = #{country}</if> <if test="country != null and country != ''"> and country = #{country}</if>
<if test="areaname != null and areaname != ''"> and areaname like concat('%', #{areaname}, '%')</if> <if test="areaname != null and areaname != ''"> and areaname like concat('%', #{areaname}, '%')</if>
<if test="leavereason != null and leavereason != ''"> and leavereason = #{leavereason}</if> <if test="leavereason != null and leavereason != ''"> and leavereason = #{leavereason}</if>

Loading…
Cancel
Save