|
@@ -28,12 +28,14 @@
|
|
|
<result column="sa_text3" property="sa_text3" jdbcType="VARCHAR" />
|
|
<result column="sa_text3" property="sa_text3" jdbcType="VARCHAR" />
|
|
|
<result column="sa_text4" property="sa_text4" jdbcType="VARCHAR" />
|
|
<result column="sa_text4" property="sa_text4" jdbcType="VARCHAR" />
|
|
|
<result column="sa_text5" property="sa_text5" jdbcType="VARCHAR" />
|
|
<result column="sa_text5" property="sa_text5" jdbcType="VARCHAR" />
|
|
|
|
|
+ <result column="sa_auditman" property="sa_auditman" jdbcType="VARCHAR" />
|
|
|
|
|
+ <result column="sa_auditdate" property="sa_auditdate" jdbcType="TIMESTAMP"/>
|
|
|
</resultMap>
|
|
</resultMap>
|
|
|
<sql id="Base_Column_List" >
|
|
<sql id="Base_Column_List" >
|
|
|
sa_id, sa_code, sa_custid, sa_custcode, sa_custname, sa_toplace, sa_total, sa_totalupper,
|
|
sa_id, sa_code, sa_custid, sa_custcode, sa_custname, sa_toplace, sa_total, sa_totalupper,
|
|
|
sa_remark, sa_status, sa_statuscode, sa_sendstatuscode, sa_sendstatus, sa_printstatus,
|
|
sa_remark, sa_status, sa_statuscode, sa_sendstatuscode, sa_sendstatus, sa_printstatus,
|
|
|
sa_printstatuscode, sa_recorderid, sa_recorder, sa_recorddate, companyId, updaterId,
|
|
sa_printstatuscode, sa_recorderid, sa_recorder, sa_recorddate, companyId, updaterId,
|
|
|
- updateTime, sa_text1, sa_text2, sa_text3, sa_text4, sa_text5
|
|
|
|
|
|
|
+ updateTime, sa_text1, sa_text2, sa_text3, sa_text4, sa_text5,sa_auditman,sa_auditdate
|
|
|
</sql>
|
|
</sql>
|
|
|
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Long" >
|
|
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Long" >
|
|
|
select
|
|
select
|
|
@@ -303,6 +305,12 @@
|
|
|
<if test="sa_text5 != null" >
|
|
<if test="sa_text5 != null" >
|
|
|
sa_text5 = #{sa_text5,jdbcType=VARCHAR},
|
|
sa_text5 = #{sa_text5,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="sa_auditman != null" >
|
|
|
|
|
+ sa_auditman = #{sa_auditman,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="sa_auditdate != null" >
|
|
|
|
|
+ sa_auditdate = #{sa_auditdate,jdbcType=TIMESTAMP},
|
|
|
|
|
+ </if>
|
|
|
</set>
|
|
</set>
|
|
|
where sa_id = #{id,jdbcType=INTEGER}
|
|
where sa_id = #{id,jdbcType=INTEGER}
|
|
|
</update>
|
|
</update>
|