|
@@ -11,13 +11,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="path" column="path" />
|
|
|
<result property="status" column="status" />
|
|
|
<result property="grade" column="grade" />
|
|
|
+ <result property="name" column="name" />
|
|
|
+
|
|
|
<result property="type" column="type" />
|
|
|
<result property="remark" column="remark" />
|
|
|
<result property="createTime" column="create_time" />
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectDkFjVo">
|
|
|
- select id, dk_id, fj_name, path, status, grade, type, remark, create_time from dk_fj
|
|
|
+ select id, dk_id, fj_name, path, status, grade,name, type, remark, create_time from dk_fj
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectDkFjList" parameterType="DkFj" resultMap="DkFjResult">
|
|
@@ -45,6 +47,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="path != null">path,</if>
|
|
|
<if test="status != null">status,</if>
|
|
|
<if test="grade != null">grade,</if>
|
|
|
+ <if test="name != null">name,</if>
|
|
|
<if test="type != null">type,</if>
|
|
|
<if test="remark != null">remark,</if>
|
|
|
<if test="createTime != null">create_time,</if>
|
|
@@ -55,6 +58,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="path != null">#{path},</if>
|
|
|
<if test="status != null">#{status},</if>
|
|
|
<if test="grade != null">#{grade},</if>
|
|
|
+ <if test="name != null">#{name},</if>
|
|
|
<if test="type != null">#{type},</if>
|
|
|
<if test="remark != null">#{remark},</if>
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
@@ -69,6 +73,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="path != null">path = #{path},</if>
|
|
|
<if test="status != null">status = #{status},</if>
|
|
|
<if test="grade != null">grade = #{grade},</if>
|
|
|
+ <if test="name != null">name = #{name},</if>
|
|
|
<if test="type != null">type = #{type},</if>
|
|
|
<if test="remark != null">remark = #{remark},</if>
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|