mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
update 预约充电
This commit is contained in:
@@ -10,6 +10,7 @@
|
||||
<result column="pile_connector_code" jdbcType="VARCHAR" property="pileConnectorCode" />
|
||||
<result column="status" jdbcType="VARCHAR" property="status" />
|
||||
<result column="reservation_type" jdbcType="VARCHAR" property="reservationType" />
|
||||
<result column="verify_identity" jdbcType="VARCHAR" property="verifyIdentity" />
|
||||
<result column="start_time" jdbcType="TIME" property="startTime" />
|
||||
<result column="end_time" jdbcType="TIME" property="endTime" />
|
||||
<result column="freq" jdbcType="VARCHAR" property="freq" />
|
||||
@@ -21,7 +22,7 @@
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, member_id, pile_sn, pile_connector_code, `status`, reservation_type, start_time,
|
||||
id, member_id, pile_sn, pile_connector_code, `status`, reservation_type, verify_identity, start_time,
|
||||
end_time, freq, create_by, create_time, update_by, update_time, del_flag
|
||||
</sql>
|
||||
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
||||
@@ -39,12 +40,10 @@
|
||||
<insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.jsowell.pile.domain.PileReservationInfo" useGeneratedKeys="true">
|
||||
<!--@mbg.generated-->
|
||||
insert into pile_reservation_info (member_id, pile_sn, pile_connector_code,
|
||||
`status`, reservation_type, start_time,
|
||||
end_time, freq, create_by,
|
||||
create_time, update_by, update_time,
|
||||
del_flag)
|
||||
`status`, reservation_type, verify_identity, start_time, end_time, freq, create_by,
|
||||
create_time, update_by, update_time, del_flag)
|
||||
values (#{memberId,jdbcType=VARCHAR}, #{pileSn,jdbcType=VARCHAR}, #{pileConnectorCode,jdbcType=VARCHAR},
|
||||
#{status,jdbcType=VARCHAR}, #{reservationType,jdbcType=VARCHAR}, #{startTime,jdbcType=TIME},
|
||||
#{status,jdbcType=VARCHAR}, #{reservationType,jdbcType=VARCHAR}, #{verifyIdentity,jdbcType=VARCHAR}, #{startTime,jdbcType=TIME},
|
||||
#{endTime,jdbcType=TIME}, #{freq,jdbcType=VARCHAR}, #{createBy,jdbcType=VARCHAR},
|
||||
#{createTime,jdbcType=TIMESTAMP}, #{updateBy,jdbcType=VARCHAR}, #{updateTime,jdbcType=TIMESTAMP},
|
||||
#{delFlag,jdbcType=CHAR})
|
||||
|
||||
Reference in New Issue
Block a user