Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
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
项目统一框架
amos-boot-biz
Commits
af878b99
Commit
af878b99
authored
Jul 25, 2022
by
tangwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改实体;类
parent
6fd79038
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
1 deletion
+50
-1
Route.java
...c/main/java/com/yeejoin/amos/patrol/dao/entity/Route.java
+50
-1
No files found.
amos-boot-module/amos-boot-module-api/amos-boot-module-patrol-api/src/main/java/com/yeejoin/amos/patrol/dao/entity/Route.java
View file @
af878b99
...
@@ -77,13 +77,62 @@ public class Route extends BasicEntity {
...
@@ -77,13 +77,62 @@ public class Route extends BasicEntity {
*/
*/
@Column
(
name
=
"user_id"
)
@Column
(
name
=
"user_id"
)
private
String
userId
;
private
String
userId
;
/**
/**
* 原始字段
* 原始字段
*/
*/
@Column
(
name
=
"original_id"
,
columnDefinition
=
"varchar(50) COMMENT '原始字段'"
)
@Column
(
name
=
"original_id"
,
columnDefinition
=
"varchar(50) COMMENT '原始字段'"
)
private
String
originalId
;
private
String
originalId
;
//新增
/**
* 负责人名称
*/
@Column
(
name
=
"boss_name"
)
private
String
bossName
;
//所属单位code
@Column
(
name
=
"biz_org_code"
)
private
String
bizOrgCode
;
//所属单位名称
@Column
(
name
=
"biz_org_name"
)
private
String
bizOrgName
;
//责任部门名称
@Column
(
name
=
"dept_name"
)
private
String
deptName
;
public
String
getBossName
()
{
return
bossName
;
}
public
void
setBossName
(
String
bossName
)
{
this
.
bossName
=
bossName
;
}
public
String
getBizOrgCode
()
{
return
bizOrgCode
;
}
public
void
setBizOrgCode
(
String
bizOrgCode
)
{
this
.
bizOrgCode
=
bizOrgCode
;
}
public
String
getBizOrgName
()
{
return
bizOrgName
;
}
public
void
setBizOrgName
(
String
bizOrgName
)
{
this
.
bizOrgName
=
bizOrgName
;
}
public
String
getDeptName
()
{
return
deptName
;
}
public
void
setDeptName
(
String
deptName
)
{
this
.
deptName
=
deptName
;
}
private
List
<
RoutePoint
>
routePointList
;
private
List
<
RoutePoint
>
routePointList
;
public
Route
()
{
public
Route
()
{
}
}
...
...
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