|
|
@@ -37,6 +37,7 @@
|
|
|
<result column="pi_auditman" jdbcType="VARCHAR" property="pi_auditman" />
|
|
|
<result column="pi_remark" jdbcType="VARCHAR" property="pi_remark" />
|
|
|
<result column="pi_ioid" jdbcType="INTEGER" property="pi_ioid" />
|
|
|
+ <result column="pi_costtotal" jdbcType="DOUBLE" property="pi_costtotal"/>
|
|
|
</resultMap>
|
|
|
<resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="com.usoftchina.saas.storage.po.ProdInOut">
|
|
|
<result column="pi_address" jdbcType="LONGVARCHAR" property="pi_address" />
|
|
|
@@ -48,7 +49,7 @@
|
|
|
pi_id, pi_inoutno, pi_class, pi_date, pi_vendid, pi_vendcode, pi_vendname, pi_custid,
|
|
|
pi_custcode, pi_custname, pi_puid, pi_pucode, pi_said, pi_sacode, pi_total,pi_status, pi_statuscode, pi_printstatus, pi_printstatuscode,
|
|
|
companyid, updaterid,updaterName,updatetime,creatorid,creatorName,createtime, pi_text1, pi_text2, pi_text3, pi_text4, pi_text5,pi_auditdate,
|
|
|
- pi_auditman,pi_remark,pi_ioid
|
|
|
+ pi_auditman,pi_remark,pi_ioid,pi_costtotal
|
|
|
</sql>
|
|
|
<sql id="Blob_Column_List">
|
|
|
pi_address
|
|
|
@@ -184,6 +185,9 @@
|
|
|
<if test="pi_macode != null">
|
|
|
pi_macode,
|
|
|
</if>
|
|
|
+ <if test="pi_costtotal!=null">
|
|
|
+ pi_costtotal,
|
|
|
+ </if>
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
|
|
@@ -298,6 +302,9 @@
|
|
|
<if test="pi_macode != null">
|
|
|
#{pi_macode,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="pi_costtotal !=null">
|
|
|
+ #{pi_costtotal,jdbcType=DOUBLE},
|
|
|
+ </if>
|
|
|
</trim>
|
|
|
</insert>
|
|
|
|