|
|
@@ -40,6 +40,9 @@
|
|
|
<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_iocode" jdbcType="VARCHAR" property="pi_iocode" />
|
|
|
+ <result column="pi_prstatus" jdbcType="VARCHAR" property="pi_prstatus" />
|
|
|
+ <result column="pi_prstatuscode" jdbcType="VARCHAR" property="pi_prstatuscode" />
|
|
|
</resultMap>
|
|
|
<resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="com.usoftchina.saas.purchase.po.ProdInOut">
|
|
|
<result column="pi_address" jdbcType="LONGVARCHAR" property="pi_address" />
|
|
|
@@ -52,7 +55,7 @@
|
|
|
pi_custcode, pi_custname, pi_puid, pi_pucode, pi_said, pi_sacode, pi_total, pi_recordmanid,
|
|
|
pi_recordman, pi_recorddate, 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_iocode,pi_prstatus,pi_prstatuscode
|
|
|
</sql>
|
|
|
<sql id="Blob_Column_List">
|
|
|
pi_address
|
|
|
@@ -190,6 +193,15 @@
|
|
|
<if test="pi_ioid != null">
|
|
|
pi_ioid,
|
|
|
</if>
|
|
|
+ <if test="pi_iocode != null">
|
|
|
+ pi_iocode,
|
|
|
+ </if>
|
|
|
+ <if test="pi_prstatus != null">
|
|
|
+ pi_prstatus,
|
|
|
+ </if>
|
|
|
+ <if test="pi_prstatuscode != null">
|
|
|
+ pi_prstatuscode,
|
|
|
+ </if>
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
|
|
@@ -306,6 +318,15 @@
|
|
|
<if test="pi_ioid != null">
|
|
|
#{pi_ioid,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
+ <if test="pi_iocode != null">
|
|
|
+ #{pi_iocode,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="pi_prstatus != null">
|
|
|
+ #{pi_prstatus,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="pi_prstatuscode != null">
|
|
|
+ #{pi_prstatuscode,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
</trim>
|
|
|
</insert>
|
|
|
|