文件业务逻辑修改
This commit is contained in:
@@ -10,6 +10,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="cvName" column="cv_name" />
|
||||
<result property="cvFileType" column="cv_file_type" />
|
||||
<result property="cvUrl" column="cv_url" />
|
||||
<result property="fileSizeShow" column="file_size_show" />
|
||||
<result property="status" column="status" />
|
||||
<result property="delFlag" column="del_flag" />
|
||||
<result property="createBy" column="create_by" />
|
||||
@@ -20,7 +21,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectHotakeCvInfoVo">
|
||||
select id, user_id, cv_name, cv_file_type, cv_url, status, del_flag, create_by, create_time, update_by, update_time, remark from hotake_cv_info
|
||||
select id, user_id, cv_name, cv_file_type, cv_url,file_size_show, status, del_flag, create_by, create_time, update_by, update_time, remark from hotake_cv_info
|
||||
</sql>
|
||||
|
||||
<select id="selectHotakeCvInfoList" parameterType="HotakeCvInfo" resultMap="HotakeCvInfoResult">
|
||||
@@ -47,6 +48,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="cvName != null">cv_name,</if>
|
||||
<if test="cvFileType != null">cv_file_type,</if>
|
||||
<if test="cvUrl != null">cv_url,</if>
|
||||
<if test="fileSizeShow != null">file_size_show,</if>
|
||||
<if test="status != null">status,</if>
|
||||
<if test="delFlag != null">del_flag,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
@@ -60,6 +62,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="cvName != null">#{cvName},</if>
|
||||
<if test="cvFileType != null">#{cvFileType},</if>
|
||||
<if test="cvUrl != null">#{cvUrl},</if>
|
||||
<if test="fileSizeShow != null">#{fileSizeShow},</if>
|
||||
<if test="status != null">#{status},</if>
|
||||
<if test="delFlag != null">#{delFlag},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
@@ -77,6 +80,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="cvName != null">cv_name = #{cvName},</if>
|
||||
<if test="cvFileType != null">cv_file_type = #{cvFileType},</if>
|
||||
<if test="cvUrl != null">cv_url = #{cvUrl},</if>
|
||||
<if test="fileSizeShow != null">file_size_show = #{fileSizeShow},</if>
|
||||
<if test="status != null">status = #{status},</if>
|
||||
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
|
||||
Reference in New Issue
Block a user