Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gassafety-progress
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
耿迪迪
gassafety-progress
Commits
4d7a9fde
Commit
4d7a9fde
authored
Mar 21, 2022
by
耿迪迪
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
ssh://111.61.77.35:15/gengdidi/gassafety-progress
parents
bc8fba4f
077e4763
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
TEventReceive.java
...src/main/java/com/zehong/system/domain/TEventReceive.java
+3
-3
TEventReceiveServiceImpl.java
.../zehong/system/service/impl/TEventReceiveServiceImpl.java
+3
-0
No files found.
gassafetyprogress-system/src/main/java/com/zehong/system/domain/TEventReceive.java
View file @
4d7a9fde
...
...
@@ -61,7 +61,7 @@ public class TEventReceive extends BaseEntity
/** 指派公司id */
@Excel
(
name
=
"指派公司id"
)
private
String
enterpriseId
;
private
Integer
enterpriseId
;
/** 指派公司名称 */
@Excel
(
name
=
"指派公司名称"
)
...
...
@@ -183,12 +183,12 @@ public class TEventReceive extends BaseEntity
{
return
describe
;
}
public
void
setEnterpriseId
(
String
enterpriseId
)
public
void
setEnterpriseId
(
Integer
enterpriseId
)
{
this
.
enterpriseId
=
enterpriseId
;
}
public
String
getEnterpriseId
()
public
Integer
getEnterpriseId
()
{
return
enterpriseId
;
}
...
...
gassafetyprogress-system/src/main/java/com/zehong/system/service/impl/TEventReceiveServiceImpl.java
View file @
4d7a9fde
...
...
@@ -53,6 +53,9 @@ public class TEventReceiveServiceImpl implements ITEventReceiveService
@Override
public
int
insertTEventReceive
(
TEventReceive
tEventReceive
)
{
if
(
tEventReceive
.
getEnterpriseId
()!=
null
){
tEventReceive
.
setStatus
(
2
);
}
tEventReceive
.
setCreateTime
(
DateUtils
.
getNowDate
());
return
tEventReceiveMapper
.
insertTEventReceive
(
tEventReceive
);
}
...
...
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