Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pms-dispatch-assistant
Project
Project
Details
Activity
Releases
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
姜耀祖
pms-dispatch-assistant
Commits
0af64ced
Commit
0af64ced
authored
Jun 06, 2025
by
赵灿灿
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改类型
parent
0653e1c3
Pipeline
#21463
passed with stages
in 3 minutes and 42 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
10 deletions
+11
-10
ExpertInformation.java
...assistant/domain/expertInformation/ExpertInformation.java
+8
-7
ExpertInformationRepository.java
...ucture/expertInformation/ExpertInformationRepository.java
+3
-3
No files found.
src/main/java/com/infoepoch/pms/dispatchassistant/domain/expertInformation/ExpertInformation.java
View file @
0af64ced
...
...
@@ -89,15 +89,15 @@ public class ExpertInformation {
/**
* 专家科室ID
*/
private
Integer
groupId
;
private
Long
groupId
;
/**
* 专家部门ID
*/
private
Integer
departmentId
;
private
Long
departmentId
;
/**
* 专家用户ID
*/
private
Integer
userId
;
private
Long
userId
;
/**
* 专家满意度均分
*/
...
...
@@ -128,7 +128,7 @@ public class ExpertInformation {
/**
* 仓储还原
*/
public
ExpertInformation
(
Integer
id
,
String
name
,
String
gender
,
String
mailbox
,
String
telephone
,
String
userName
,
Date
employmentDate
,
String
department
,
String
group
,
String
position
,
String
scopeBusiness
,
String
state
,
String
specializesFields
,
String
expertIntroduction
,
String
organizationalCode
,
Date
recordTime
,
Date
updateTime
,
String
photo
,
Integer
groupId
,
Integer
departmentId
,
Integer
userId
,
BigDecimal
satisfactionScore
,
String
level
,
String
disabled
,
String
regionCode
,
Integer
sort
)
{
public
ExpertInformation
(
Integer
id
,
String
name
,
String
gender
,
String
mailbox
,
String
telephone
,
String
userName
,
Date
employmentDate
,
String
department
,
String
group
,
String
position
,
String
scopeBusiness
,
String
state
,
String
specializesFields
,
String
expertIntroduction
,
String
organizationalCode
,
Date
recordTime
,
Date
updateTime
,
String
photo
,
Long
groupId
,
Long
departmentId
,
Long
userId
,
BigDecimal
satisfactionScore
,
String
level
,
String
disabled
,
String
regionCode
,
Integer
sort
)
{
this
.
id
=
id
;
this
.
name
=
name
;
this
.
gender
=
gender
;
...
...
@@ -234,15 +234,16 @@ public class ExpertInformation {
return
photo
;
}
public
Integer
getGroupId
()
{
public
Long
getGroupId
()
{
return
groupId
;
}
public
Integer
getDepartmentId
()
{
// This method returns the departmentId
public
Long
getDepartmentId
()
{
return
departmentId
;
}
public
Integer
getUserId
()
{
public
Long
getUserId
()
{
return
userId
;
}
...
...
src/main/java/com/infoepoch/pms/dispatchassistant/infractructure/expertInformation/ExpertInformationRepository.java
View file @
0af64ced
...
...
@@ -278,9 +278,9 @@ public class ExpertInformationRepository implements IExpertInformationRepository
rs
.
getTimestamp
(
"EI_RECORD_TIME"
),
rs
.
getTimestamp
(
"EI_UPDATE_TIME"
),
rs
.
getString
(
"EI_PHOTO"
),
rs
.
getObject
(
"EI_GROUP_ID"
)
!=
null
?
rs
.
get
Int
(
"EI_GROUP_ID"
)
:
null
,
rs
.
getObject
(
"EI_DEPARTMENT_ID"
)
!=
null
?
rs
.
get
Int
(
"EI_DEPARTMENT_ID"
)
:
null
,
rs
.
getObject
(
"EI_USER_ID"
)
!=
null
?
rs
.
get
Int
(
"EI_USER_ID"
)
:
null
,
rs
.
getObject
(
"EI_GROUP_ID"
)
!=
null
?
rs
.
get
Long
(
"EI_GROUP_ID"
)
:
null
,
rs
.
getObject
(
"EI_DEPARTMENT_ID"
)
!=
null
?
rs
.
get
Long
(
"EI_DEPARTMENT_ID"
)
:
null
,
rs
.
getObject
(
"EI_USER_ID"
)
!=
null
?
rs
.
get
Long
(
"EI_USER_ID"
)
:
null
,
rs
.
getBigDecimal
(
"EI_SATISFACTION_SCORE"
),
rs
.
getString
(
"EI_LEVEL"
),
rs
.
getString
(
"EI_DISABLED"
),
...
...
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