|
@@ -9,7 +9,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="attendanceAdd" column="attendance_add" />
|
|
|
<result property="lgt" column="lgt" />
|
|
|
<result property="lat" column="lat" />
|
|
|
- <result property="range" column="range" />
|
|
|
+ <result property="limitRange" column="limit_range" />
|
|
|
<result property="createBy" column="create_by" />
|
|
|
<result property="createTime" column="create_time" />
|
|
|
<result property="updateBy" column="update_by" />
|
|
@@ -18,7 +18,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectAttendanceSetVo">
|
|
|
- select id, attendance_add, lgt, lat, range, create_by, create_time, update_by, update_time, is_del from attendance_set
|
|
|
+ select id, attendance_add, lgt, lat, limit_range, create_by, create_time, update_by, update_time, is_del from attendance_set
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectAttendanceSetList" parameterType="AttendanceSet" resultMap="AttendanceSetResult">
|
|
@@ -28,7 +28,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="attendanceAdd != null and attendanceAdd != ''"> and attendance_add = #{attendanceAdd}</if>
|
|
|
<if test="lgt != null and lgt != ''"> and lgt = #{lgt}</if>
|
|
|
<if test="lat != null and lat != ''"> and lat = #{lat}</if>
|
|
|
- <if test="range != null and range != ''"> and range = #{range}</if>
|
|
|
+ <if test="limitRange != null and limitRange != ''"> and limit_range = #{limitRange}</if>
|
|
|
</where>
|
|
|
</select>
|
|
|
|
|
@@ -44,7 +44,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="attendanceAdd != null">attendance_add,</if>
|
|
|
<if test="lgt != null">lgt,</if>
|
|
|
<if test="lat != null">lat,</if>
|
|
|
- <if test="range != null">range,</if>
|
|
|
+ <if test="limitRange != null">limit_range,</if>
|
|
|
<if test="createBy != null">create_by,</if>
|
|
|
<if test="createTime != null">create_time,</if>
|
|
|
<if test="updateBy != null">update_by,</if>
|
|
@@ -56,7 +56,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="attendanceAdd != null">#{attendanceAdd},</if>
|
|
|
<if test="lgt != null">#{lgt},</if>
|
|
|
<if test="lat != null">#{lat},</if>
|
|
|
- <if test="range != null">#{range},</if>
|
|
|
+ <if test="limitRange != null">#{limit_range},</if>
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
@@ -71,7 +71,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="attendanceAdd != null">attendance_add = #{attendanceAdd},</if>
|
|
|
<if test="lgt != null">lgt = #{lgt},</if>
|
|
|
<if test="lat != null">lat = #{lat},</if>
|
|
|
- <if test="range != null">range = #{range},</if>
|
|
|
+ <if test="limitRange != null">limit_range = #{limitRange},</if>
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|