Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
engine-class-work
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
liuchengjiu
engine-class-work
Commits
1aa8e457
Commit
1aa8e457
authored
Jan 29, 2022
by
liu_cheng_jiu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
init
parent
bb695383
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
0 deletions
+37
-0
StudentPointService.java
...ploring/engine/server/db/service/StudentPointService.java
+37
-0
No files found.
server-db/src/main/java/cn/exploring/engine/server/db/service/StudentPointService.java
0 → 100644
View file @
1aa8e457
package
cn
.
exploring
.
engine
.
server
.
db
.
service
;
import
cn.exploring.engine.server.db.dao.StudentPointInfoMapper
;
import
cn.exploring.engine.server.db.domain.StudentPointInfo
;
import
org.springframework.stereotype.Service
;
import
javax.annotation.Resource
;
import
java.time.LocalDateTime
;
import
java.util.List
;
@Service
public
class
StudentPointService
{
@Resource
StudentPointInfoMapper
studentPointInfoMapper
;
// public List<StudentPointInfo> selectPointInfo() {
//
// }
public
Object
addPoint
(
StudentPointInfo
studentPoint
)
{
LocalDateTime
now
=
LocalDateTime
.
now
();
studentPoint
.
setUpdateTime
(
now
);
studentPoint
.
setAddTime
(
now
);
studentPoint
.
setDeleted
(
false
);
studentPointInfoMapper
.
insertSelective
(
studentPoint
);
return
"add OK"
;
}
public
Object
updatePoint
(
StudentPointInfo
studentPoint
)
{
LocalDateTime
now
=
LocalDateTime
.
now
();
studentPoint
.
setUpdateTime
(
now
);
studentPointInfoMapper
.
updateByPrimaryKey
(
studentPoint
);
return
"update OK"
;
}
}
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