Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
haoban3.0
haoban-manage3.0
Commits
8067d24f
Commit
8067d24f
authored
Aug 04, 2020
by
qwmqiuwenmin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'developer' into 'master'
Developer See merge request
!78
parents
c469b166
400840c4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
3 deletions
+31
-3
MaidianLogDTO.java
...ain/java/com/gic/haoban/manage/api/dto/MaidianLogDTO.java
+10
-0
TabHaobanMaidianLog.java
...gic/haoban/manage/service/entity/TabHaobanMaidianLog.java
+11
-0
TabHaobanMaidianLogMapper.xml
...e/src/main/resources/mapper/TabHaobanMaidianLogMapper.xml
+10
-3
No files found.
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/dto/MaidianLogDTO.java
View file @
8067d24f
...
...
@@ -59,6 +59,8 @@ public class MaidianLogDTO implements Serializable{
private
Date
createTime
;
private
Date
updateTime
;
private
String
environment
;
private
static
final
long
serialVersionUID
=
1L
;
...
...
@@ -277,6 +279,14 @@ public class MaidianLogDTO implements Serializable{
public
void
setEnterpriseId
(
String
enterpriseId
)
{
this
.
enterpriseId
=
enterpriseId
;
}
public
String
getEnvironment
()
{
return
environment
;
}
public
void
setEnvironment
(
String
environment
)
{
this
.
environment
=
environment
;
}
...
...
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/entity/TabHaobanMaidianLog.java
View file @
8067d24f
...
...
@@ -57,6 +57,8 @@ public class TabHaobanMaidianLog implements Serializable {
private
String
clerkId
;
private
String
enterpriseId
;
private
String
environment
;
private
static
final
long
serialVersionUID
=
1L
;
...
...
@@ -275,6 +277,14 @@ public class TabHaobanMaidianLog implements Serializable {
public
void
setEnterpriseId
(
String
enterpriseId
)
{
this
.
enterpriseId
=
enterpriseId
;
}
public
String
getEnvironment
()
{
return
environment
;
}
public
void
setEnvironment
(
String
environment
)
{
this
.
environment
=
environment
;
}
}
\ No newline at end of file
haoban-manage3-service/src/main/resources/mapper/TabHaobanMaidianLogMapper.xml
View file @
8067d24f
...
...
@@ -29,11 +29,12 @@
<result
column=
"store_status"
property=
"storeStatus"
jdbcType=
"INTEGER"
/>
<result
column=
"create_time"
property=
"createTime"
jdbcType=
"TIMESTAMP"
/>
<result
column=
"update_time"
property=
"updateTime"
jdbcType=
"TIMESTAMP"
/>
<result
column=
"environment"
property=
"environment"
jdbcType=
"VARCHAR"
/>
</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,track_sign,store_id,store_status,clerk_code,clerk_id,enterprise_id
system_info, stay_time, create_time, update_time,track_sign,store_id,store_status,clerk_code,clerk_id,enterprise_id
,environment
</sql>
<select
id=
"selectByPrimaryKey"
resultMap=
"BaseResultMap"
parameterType=
"java.lang.Integer"
>
select
...
...
@@ -52,7 +53,7 @@
scene, platform, model,
brand, hbversion, system,
sdk_version, version, system_info,
stay_time, create_time, update_time,track_sign,store_status,clerk_code,store_id,clerk_id,enterprise_id
stay_time, create_time, update_time,track_sign,store_status,clerk_code,store_id,clerk_id,enterprise_id
,environment
)
values (#{maidianId,jdbcType=INTEGER}, #{staffId,jdbcType=VARCHAR}, #{wxEnterpriseId,jdbcType=VARCHAR},
#{phoneNumber,jdbcType=VARCHAR}, #{deviceDate,jdbcType=TIMESTAMP}, #{options,jdbcType=VARCHAR},
...
...
@@ -61,7 +62,7 @@
#{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},#{trackSign},
#{storeStatus},#{clerkCode},#{storeId},#{clerkId},#{enterpriseId}
#{storeStatus},#{clerkCode},#{storeId},#{clerkId},#{enterpriseId}
,#{environment}
)
</insert>
<insert
id=
"insertSelective"
parameterType=
"com.gic.haoban.manage.service.entity.TabHaobanMaidianLog"
>
...
...
@@ -139,6 +140,9 @@
<if
test=
"enterpriseId != null"
>
enterprise_id,
</if>
<if
test=
"environment != null"
>
environment,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"maidianId != null"
>
...
...
@@ -213,6 +217,9 @@
<if
test=
"enterpriseId != null"
>
#{enterpriseId},
</if>
<if
test=
"environment != null"
>
#{environment},
</if>
</trim>
</insert>
<update
id=
"updateByPrimaryKeySelective"
parameterType=
"com.gic.haoban.manage.service.entity.TabHaobanMaidianLog"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment