|
|
@ -7,6 +7,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<resultMap type="TdFileReceive" id="TdFileReceiveResult">
|
|
|
|
<resultMap type="TdFileReceive" id="TdFileReceiveResult">
|
|
|
|
<result property="receiveId" column="receive_id" />
|
|
|
|
<result property="receiveId" column="receive_id" />
|
|
|
|
<result property="fileId" column="file_id" />
|
|
|
|
<result property="fileId" column="file_id" />
|
|
|
|
|
|
|
|
<result property="fileName" column="file_name" />
|
|
|
|
|
|
|
|
<result property="provideDepart" column="provide_depart" />
|
|
|
|
|
|
|
|
<result property="provideDate" column="provide_date" />
|
|
|
|
<result property="receiveDepartid" column="receive_departid" />
|
|
|
|
<result property="receiveDepartid" column="receive_departid" />
|
|
|
|
<result property="receiveState" column="receive_state" />
|
|
|
|
<result property="receiveState" column="receive_state" />
|
|
|
|
<result property="receiveUserid" column="receive_userid" />
|
|
|
|
<result property="receiveUserid" column="receive_userid" />
|
|
|
@ -19,13 +22,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
</resultMap>
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
|
|
<sql id="selectTdFileReceiveVo">
|
|
|
|
<sql id="selectTdFileReceiveVo">
|
|
|
|
select receive_id, file_id, receive_departid, receive_state, receive_userid, receive_date, extract_state, extract_departid, extract_userid, extract_date, destory_state from td_file_receive
|
|
|
|
select receive_id, file_id, file_name, provide_depart, provide_date, receive_departid, receive_state, receive_userid, receive_date, extract_state, extract_departid, extract_userid, extract_date, destory_state from td_file_receive
|
|
|
|
</sql>
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectTdFileReceiveList" parameterType="TdFileReceive" resultMap="TdFileReceiveResult">
|
|
|
|
<select id="selectTdFileReceiveList" parameterType="TdFileReceive" resultMap="TdFileReceiveResult">
|
|
|
|
<include refid="selectTdFileReceiveVo"/>
|
|
|
|
<include refid="selectTdFileReceiveVo"/>
|
|
|
|
<where>
|
|
|
|
<where>
|
|
|
|
<if test="fileId != null and fileId != ''"> and file_id = #{fileId}</if>
|
|
|
|
<if test="fileId != null and fileId != ''"> and file_id = #{fileId}</if>
|
|
|
|
|
|
|
|
<if test="fileName != null and fileName != ''"> and file_name like concat('%', #{fileName}, '%')</if>
|
|
|
|
|
|
|
|
<if test="provideDepart != null and provideDepart != ''"> and provide_depart = #{provideDepart}</if>
|
|
|
|
|
|
|
|
<if test="provideDate != null "> and provide_date = #{provideDate}</if>
|
|
|
|
<if test="receiveDepartid != null and receiveDepartid != ''"> and receive_departid = #{receiveDepartid}</if>
|
|
|
|
<if test="receiveDepartid != null and receiveDepartid != ''"> and receive_departid = #{receiveDepartid}</if>
|
|
|
|
<if test="receiveState != null and receiveState != ''"> and receive_state = #{receiveState}</if>
|
|
|
|
<if test="receiveState != null and receiveState != ''"> and receive_state = #{receiveState}</if>
|
|
|
|
<if test="receiveUserid != null and receiveUserid != ''"> and receive_userid = #{receiveUserid}</if>
|
|
|
|
<if test="receiveUserid != null and receiveUserid != ''"> and receive_userid = #{receiveUserid}</if>
|
|
|
@ -47,6 +53,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
insert into td_file_receive
|
|
|
|
insert into td_file_receive
|
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
|
<if test="fileId != null">file_id,</if>
|
|
|
|
<if test="fileId != null">file_id,</if>
|
|
|
|
|
|
|
|
<if test="fileName != null">file_name,</if>
|
|
|
|
|
|
|
|
<if test="provideDepart != null">provide_depart,</if>
|
|
|
|
|
|
|
|
<if test="provideDate != null">provide_date,</if>
|
|
|
|
<if test="receiveDepartid != null">receive_departid,</if>
|
|
|
|
<if test="receiveDepartid != null">receive_departid,</if>
|
|
|
|
<if test="receiveState != null">receive_state,</if>
|
|
|
|
<if test="receiveState != null">receive_state,</if>
|
|
|
|
<if test="receiveUserid != null">receive_userid,</if>
|
|
|
|
<if test="receiveUserid != null">receive_userid,</if>
|
|
|
@ -59,6 +68,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
</trim>
|
|
|
|
</trim>
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
<if test="fileId != null">#{fileId},</if>
|
|
|
|
<if test="fileId != null">#{fileId},</if>
|
|
|
|
|
|
|
|
<if test="fileName != null">#{fileName},</if>
|
|
|
|
|
|
|
|
<if test="provideDepart != null">#{provideDepart},</if>
|
|
|
|
|
|
|
|
<if test="provideDate != null">#{provideDate},</if>
|
|
|
|
<if test="receiveDepartid != null">#{receiveDepartid},</if>
|
|
|
|
<if test="receiveDepartid != null">#{receiveDepartid},</if>
|
|
|
|
<if test="receiveState != null">#{receiveState},</if>
|
|
|
|
<if test="receiveState != null">#{receiveState},</if>
|
|
|
|
<if test="receiveUserid != null">#{receiveUserid},</if>
|
|
|
|
<if test="receiveUserid != null">#{receiveUserid},</if>
|
|
|
@ -75,6 +87,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
update td_file_receive
|
|
|
|
update td_file_receive
|
|
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
|
|
<if test="fileId != null">file_id = #{fileId},</if>
|
|
|
|
<if test="fileId != null">file_id = #{fileId},</if>
|
|
|
|
|
|
|
|
<if test="fileName != null">file_name = #{fileName},</if>
|
|
|
|
|
|
|
|
<if test="provideDepart != null">provide_depart = #{provideDepart},</if>
|
|
|
|
|
|
|
|
<if test="provideDate != null">provide_date = #{provideDate},</if>
|
|
|
|
<if test="receiveDepartid != null">receive_departid = #{receiveDepartid},</if>
|
|
|
|
<if test="receiveDepartid != null">receive_departid = #{receiveDepartid},</if>
|
|
|
|
<if test="receiveState != null">receive_state = #{receiveState},</if>
|
|
|
|
<if test="receiveState != null">receive_state = #{receiveState},</if>
|
|
|
|
<if test="receiveUserid != null">receive_userid = #{receiveUserid},</if>
|
|
|
|
<if test="receiveUserid != null">receive_userid = #{receiveUserid},</if>
|
|
|
|