Commit efb98954 by qwmqiuwenmin

fix

parent 8091d4c3
......@@ -43,6 +43,8 @@ public class MaidianLogDTO implements Serializable{
private String systemInfo;
private Integer stayTime;
private String trackSign;
private Date createTime;
......@@ -218,4 +220,14 @@ public class MaidianLogDTO implements Serializable{
this.updateTime = updateTime;
}
public String getTrackSign() {
return trackSign;
}
public void setTrackSign(String trackSign) {
this.trackSign = trackSign;
}
}
......@@ -41,6 +41,8 @@ public class TabHaobanMaidianLog implements Serializable {
private String systemInfo;
private Integer stayTime;
private String trackSign;
private Date createTime;
......@@ -215,4 +217,14 @@ public class TabHaobanMaidianLog implements Serializable {
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
public String getTrackSign() {
return trackSign;
}
public void setTrackSign(String trackSign) {
this.trackSign = trackSign;
}
}
\ No newline at end of file
......@@ -21,13 +21,14 @@
<result column="version" property="version" jdbcType="VARCHAR" />
<result column="system_info" property="systemInfo" jdbcType="VARCHAR" />
<result column="stay_time" property="stayTime" jdbcType="INTEGER" />
<result column="track_sign" property="trackSign" jdbcType="VARCHAR" />
<result column="create_time" property="createTime" jdbcType="TIMESTAMP" />
<result column="update_time" property="updateTime" jdbcType="TIMESTAMP" />
</resultMap>
<sql id="Base_Column_List" >
maidian_id, staff_id, wx_enterprise_id, phone_number, device_date, options, event,
url, context, scene, platform, model, brand, hbversion, system, sdk_version, version,
system_info, stay_time, create_time, update_time
system_info, stay_time, create_time, update_time,track_sign
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
select
......@@ -46,7 +47,7 @@
scene, platform, model,
brand, hbversion, system,
sdk_version, version, system_info,
stay_time, create_time, update_time
stay_time, create_time, update_time,track_sign
)
values (#{maidianId,jdbcType=INTEGER}, #{staffId,jdbcType=VARCHAR}, #{wxEnterpriseId,jdbcType=VARCHAR},
#{phoneNumber,jdbcType=VARCHAR}, #{deviceDate,jdbcType=TIMESTAMP}, #{options,jdbcType=VARCHAR},
......@@ -54,7 +55,7 @@
#{scene,jdbcType=VARCHAR}, #{platform,jdbcType=VARCHAR}, #{model,jdbcType=VARCHAR},
#{brand,jdbcType=VARCHAR}, #{hbversion,jdbcType=VARCHAR}, #{system,jdbcType=VARCHAR},
#{sdkVersion,jdbcType=VARCHAR}, #{version,jdbcType=VARCHAR}, #{systemInfo,jdbcType=VARCHAR},
#{stayTime,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}
#{stayTime,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP},#{trackSign}
)
</insert>
<insert id="insertSelective" parameterType="com.gic.haoban.manage.service.entity.TabHaobanMaidianLog" >
......@@ -123,6 +124,9 @@
<if test="updateTime != null" >
update_time,
</if>
<if test="trackSign != null" >
track_sign,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides="," >
<if test="maidianId != null" >
......@@ -188,6 +192,9 @@
<if test="updateTime != null" >
#{updateTime,jdbcType=TIMESTAMP},
</if>
<if test="trackSign != null" >
#{trackSign},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.gic.haoban.manage.service.entity.TabHaobanMaidianLog" >
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment