Browse Source

添加表格写入功能

lwx_dev
erdanergou 3 years ago
parent
commit
af37ea0ad5
  1. 6
      target/classes/com/dreamchaser/depository_manage/mapper/DepositoryRecordMapper.xml

6
target/classes/com/dreamchaser/depository_manage/mapper/DepositoryRecordMapper.xml

@ -115,6 +115,7 @@
<result column="aormUnit" property="unit" jdbcType="VARCHAR"/>
<result column="aormconstructionunitid" property="constructionUnitId" jdbcType="INTEGER"/>
<result column="aormadminorgid" property="adminorgId" jdbcType="INTEGER"/>
<result column="outTime" property="outTime" jdbcType="INTEGER"/>
</resultMap>
@ -170,7 +171,7 @@
<sql id="ApplicationOutRecordInfo">
aorid,mid,mname,depositoryId,dname,applicantId,applicantTime,applyRemark,aorcode,aorpirce,aorquantity,departmenthead,departmentheadPass,departmentHeadTime,departmentheadMessage,
depositoryManager,depositoryManagerPass,depositoryManagerTime,depositoryManagerMessage,aorstate,istransfer,mcode,placeId,pass,aormUnit,aormconstructionunitid,aormadminorgid,cuname,
cuintroduce,cuaddress
cuintroduce,cuaddress,outTime
</sql>
<sql id="ApplicationOutRecordMinInfo">
@ -1444,6 +1445,9 @@
<if test="placeId != null">
placeId = #{placeId},
</if>
<if test="outTime != null">
outTime = #{outTime},
</if>
<if test="pass != null and pass != ''">
pass = #{pass}
</if>

Loading…
Cancel
Save