From 87399ae42948cb252a3afa3cf7afe5f2a6c4f809 Mon Sep 17 00:00:00 2001 From: zhubaomin <zhubaomin> Date: 星期二, 12 十一月 2024 11:43:28 +0800 Subject: [PATCH] 开阀成功时,所用虚拟卡开阀时间赋值 --- pipIrr-platform/pipIrr-global/src/main/resources/mapper/SeVirtualCardMapper.xml | 17 ++++++++++++++--- 1 files changed, 14 insertions(+), 3 deletions(-) diff --git a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/SeVirtualCardMapper.xml b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/SeVirtualCardMapper.xml index 0331a56..dfa7059 100644 --- a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/SeVirtualCardMapper.xml +++ b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/SeVirtualCardMapper.xml @@ -13,11 +13,12 @@ <result column="last_operate_time" jdbcType="TIMESTAMP" property="lastOperateTime" /> <result column="in_use" jdbcType="TINYINT" property="inUse" /> <result column="intake_id" jdbcType="BIGINT" property="intakeId" /> + <result column="open_time" jdbcType="TIMESTAMP" property="openTime" /> <result column="create_time" jdbcType="TIMESTAMP" property="createTime" /> </resultMap> <sql id="Base_Column_List"> <!--@mbg.generated--> - id, vc_num, client_id, money, state, last_operate, last_operate_time, in_use, intake_id, create_time + id, vc_num, client_id, money, state, last_operate, last_operate_time, in_use, intake_id, open_time, create_time </sql> <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> <!--@mbg.generated--> @@ -36,10 +37,10 @@ <!--@mbg.generated--> insert into se_virtual_card (id, vc_num, client_id, money, state, last_operate, last_operate_time, - in_use, intake_id, create_time) + in_use, intake_id, open_time, create_time) values (#{id,jdbcType=BIGINT}, #{vcNum,jdbcType=BIGINT}, #{clientId,jdbcType=BIGINT}, #{money,jdbcType=FLOAT}, #{state,jdbcType=TINYINT}, #{lastOperate,jdbcType=TINYINT}, #{lastOperateTime,jdbcType=TIMESTAMP}, - #{inUse,jdbcType=TINYINT}, #{intakeId,jdbcType=BIGINT},#{createTime,jdbcType=TIMESTAMP}) + #{inUse,jdbcType=TINYINT}, #{intakeId,jdbcType=BIGINT},#{openTime,jdbcType=TIMESTAMP},#{createTime,jdbcType=TIMESTAMP}) </insert> <insert id="insertSelective" parameterType="com.dy.pipIrrGlobal.pojoSe.SeVirtualCard"> <!--@mbg.generated--> @@ -72,6 +73,9 @@ <if test="intakeId != null"> intake_id, </if> + <if test="openTime != null"> + open_time, + </if> <if test="createTime != null"> create_time, </if> @@ -103,6 +107,9 @@ </if> <if test="intakeId != null"> #{intakeId,jdbcType=BIGINT}, + </if> + <if test="openTime != null"> + #{openTime,jdbcType=TIMESTAMP}, </if> <if test="createTime != null"> #{createTime,jdbcType=TIMESTAMP}, @@ -137,6 +144,9 @@ <if test="intakeId != null"> intake_id = #{intakeId,jdbcType=BIGINT}, </if> + <if test="openTime != null"> + open_time = #{openTime,jdbcType=TIMESTAMP}, + </if> <if test="createTime != null"> create_time = #{createTime,jdbcType=TIMESTAMP}, </if> @@ -154,6 +164,7 @@ last_operate_time = #{lastOperateTime,jdbcType=TIMESTAMP}, in_use = #{inUse,jdbcType=TINYINT}, intake_id = #{intakeId,jdbcType=BIGINT}, + open_time = #{openTime,jdbcType=TIMESTAMP}, create_time = #{createTime,jdbcType=TIMESTAMP} where id = #{id,jdbcType=BIGINT} </update> -- Gitblit v1.8.0