Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
yangxiujun
/
paidan_demo
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit a10a207d
authored
Jun 14, 2023
by
wangli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增ORM
1 parent
80cee2f0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
0 deletions
project-order/src/main/java/com/alibaba/cloud/integration/order/dao/CapacityEngineerStatMPDao.java
project-order/src/main/java/com/alibaba/cloud/integration/order/entity/CapacityEngineerStat.java
project-order/src/main/java/com/alibaba/cloud/integration/order/dao/CapacityEngineerStatMPDao.java
0 → 100644
View file @
a10a207
package
com
.
alibaba
.
cloud
.
integration
.
order
.
dao
;
import
com.alibaba.cloud.integration.order.entity.CapacityEngineerStat
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
org.apache.ibatis.annotations.Mapper
;
@Mapper
public
interface
CapacityEngineerStatMPDao
extends
BaseMapper
<
CapacityEngineerStat
>
{
}
project-order/src/main/java/com/alibaba/cloud/integration/order/entity/CapacityEngineerStat.java
0 → 100644
View file @
a10a207
package
com
.
alibaba
.
cloud
.
integration
.
order
.
entity
;
import
lombok.Data
;
import
java.sql.Timestamp
;
@Data
public
class
CapacityEngineerStat
{
private
long
id
;
private
String
workDay
;
private
String
engineerCode
;
private
Integer
capTotal
;
private
Integer
capUsed
;
private
Integer
capUsedTravel
;
private
Integer
capLeft
;
private
Integer
orderCount
;
private
Integer
maxDuration
;
private
Integer
memo
;
private
Timestamp
createTime
;
private
Timestamp
updateTime
;
}
Write
Preview
Markdown
is supported
Attach a file
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 post a comment