|
|
@ -53,6 +53,7 @@ |
|
|
<result column="price" property="price" jdbcType="VARCHAR" /> |
|
|
<result column="price" property="price" jdbcType="VARCHAR" /> |
|
|
<result column="tname" property="materialTypeName" jdbcType="VARCHAR" /> |
|
|
<result column="tname" property="materialTypeName" jdbcType="VARCHAR" /> |
|
|
<result column="applicantTime" property="applicant_time" jdbcType="INTEGER" /> |
|
|
<result column="applicantTime" property="applicant_time" jdbcType="INTEGER" /> |
|
|
|
|
|
<result column="airPlaceId" property="placeId" jdbcType="INTEGER" /> |
|
|
<result column="code" property="aircode" jdbcType="VARCHAR" /> |
|
|
<result column="code" property="aircode" jdbcType="VARCHAR" /> |
|
|
<result column="dname" property="depositoryName" jdbcType="VARCHAR" /> |
|
|
<result column="dname" property="depositoryName" jdbcType="VARCHAR" /> |
|
|
<result column="applicant_id" property="applicantId" jdbcType="INTEGER" /> |
|
|
<result column="applicant_id" property="applicantId" jdbcType="INTEGER" /> |
|
|
@ -139,7 +140,7 @@ |
|
|
</sql> |
|
|
</sql> |
|
|
|
|
|
|
|
|
<sql id="ApplicationInRecordInfo"> |
|
|
<sql id="ApplicationInRecordInfo"> |
|
|
airid,mname,quantity,price,tname,applicant_time,aircode,dname,applicant_id,applyRemark,mcode,mversion,munit,mtexture,mkingdeecode,mdepositoryCode,airUnit,flagForGroup,mid |
|
|
airid,mname,quantity,price,tname,applicant_time,aircode,dname,applicant_id,applyRemark,mcode,mversion,munit,mtexture,mkingdeecode,mdepositoryCode,airUnit,flagForGroup,mid,airPlaceId |
|
|
</sql> |
|
|
</sql> |
|
|
|
|
|
|
|
|
<sql id="ApplicationOutRecordInfo"> |
|
|
<sql id="ApplicationOutRecordInfo"> |
|
|
@ -628,7 +629,7 @@ |
|
|
|
|
|
|
|
|
<!-- 插入一条入库记录--> |
|
|
<!-- 插入一条入库记录--> |
|
|
<insert id="insertApplicationInRecord" parameterType="map" useGeneratedKeys="true" keyProperty="id"> |
|
|
<insert id="insertApplicationInRecord" parameterType="map" useGeneratedKeys="true" keyProperty="id"> |
|
|
insert into application_in_record (id,mid,quantity,price,applicant_id,applicant_time,depository_id,code,applyRemark,unit,flagForGroup) |
|
|
insert into application_in_record (id,mid,quantity,price,applicant_id,applicant_time,depository_id,code,applyRemark,unit,flagForGroup,placeId) |
|
|
values( |
|
|
values( |
|
|
#{id}, |
|
|
#{id}, |
|
|
#{mid}, |
|
|
#{mid}, |
|
|
@ -640,7 +641,8 @@ |
|
|
#{code}, |
|
|
#{code}, |
|
|
#{applyRemark}, |
|
|
#{applyRemark}, |
|
|
#{unit}, |
|
|
#{unit}, |
|
|
#{flagForGroup} |
|
|
#{flagForGroup}, |
|
|
|
|
|
#{placeId} |
|
|
) |
|
|
) |
|
|
</insert> |
|
|
</insert> |
|
|
|
|
|
|
|
|
|