|
@@ -8,7 +8,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="id" column="id" />
|
|
|
<result property="number" column="number" />
|
|
|
<result property="name" column="name" />
|
|
|
- <result property="company" column="company" />
|
|
|
+ <result property="parentId" column="parent_id" />
|
|
|
+ <result property="sequence" column="sequence" />
|
|
|
+ <result property="label" column="label" />
|
|
|
<result property="remark" column="remark" />
|
|
|
<result property="createBy" column="create_by" />
|
|
|
<result property="createTime" column="create_time" />
|
|
@@ -17,7 +19,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectTbLocationVo">
|
|
|
- select id, number, name, company, remark, create_by, create_time, update_by, update_time from tb_location
|
|
|
+ select id, number, name, parent_id, sequence, label, remark, create_by, create_time, update_by, update_time from tb_location
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectTbLocationList" parameterType="TbLocation" resultMap="TbLocationResult">
|
|
@@ -25,7 +27,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<where>
|
|
|
<if test="number != null and number != ''"> and number = #{number}</if>
|
|
|
<if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
|
|
|
- <if test="company != null and company != ''"> and company = #{company}</if>
|
|
|
+ <if test="parentId != null"> and parent_id = #{parentId}</if>
|
|
|
+ <if test="label != null and label != ''"> and label = #{label}</if>
|
|
|
</where>
|
|
|
</select>
|
|
|
|
|
@@ -39,7 +42,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
<if test="number != null and number != ''">number,</if>
|
|
|
<if test="name != null">name,</if>
|
|
|
- <if test="company != null and company != ''">company,</if>
|
|
|
+ <if test="parentId != null">parent_id,</if>
|
|
|
+ <if test="sequence != null and sequence != ''">sequence,</if>
|
|
|
+ <if test="label != null and label != ''">label,</if>
|
|
|
<if test="remark != null">remark,</if>
|
|
|
<if test="createBy != null and createBy != ''">create_by,</if>
|
|
|
<if test="createTime != null">create_time,</if>
|
|
@@ -49,7 +54,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="number != null and number != ''">#{number},</if>
|
|
|
<if test="name != null">#{name},</if>
|
|
|
- <if test="company != null and company != ''">#{company},</if>
|
|
|
+ <if test="parentId != null">#{parentId},</if>
|
|
|
+ <if test="sequence != null and sequence != ''">#{sequence},</if>
|
|
|
+ <if test="label != null and label != ''">#{label},</if>
|
|
|
<if test="remark != null">#{remark},</if>
|
|
|
<if test="createBy != null and createBy != ''">#{createBy},</if>
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
@@ -63,7 +70,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
|
<if test="number != null and number != ''">number = #{number},</if>
|
|
|
<if test="name != null">name = #{name},</if>
|
|
|
- <if test="company != null and company != ''">company = #{company},</if>
|
|
|
+ <if test="parentId != null">parent_id = #{parentId},</if>
|
|
|
+ <if test="sequence != null and sequence != ''">sequence = #{sequence},</if>
|
|
|
+ <if test="label != null and label != ''">label = #{label},</if>
|
|
|
<if test="remark != null">remark = #{remark},</if>
|
|
|
<if test="createBy != null and createBy != ''">create_by = #{createBy},</if>
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|