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
71e9937c
Commit
71e9937c
authored
Jun 01, 2024
by
kinky2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加气瓶相关mapper引用
parent
2d73c1b8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
1 deletion
+47
-1
SyncCylinderDataService.java
...mos/api/openapi/face/service/SyncCylinderDataService.java
+47
-1
No files found.
amos-boot-data/amos-boot-data-openapi/src/main/java/com/yeejoin/amos/api/openapi/face/service/SyncCylinderDataService.java
View file @
71e9937c
...
...
@@ -9,9 +9,16 @@ import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.yeejoin.amos.boot.module.cylinder.flc.api.dto.CylinderInfoDto
;
import
com.yeejoin.amos.boot.module.cylinder.flc.api.entity.CylinderFillingRecord
;
import
com.yeejoin.amos.boot.module.cylinder.flc.api.entity.CylinderUnit
;
import
com.yeejoin.amos.boot.module.cylinder.flc.api.dto.CylinderUnitDto
;
import
com.yeejoin.amos.boot.module.cylinder.flc.api.entity.CylinderUnitVideo
;
import
com.yeejoin.amos.boot.module.cylinder.flc.api.mapper.CylinderFillingCheckMapper
;
import
com.yeejoin.amos.boot.module.cylinder.flc.api.mapper.CylinderFillingExamineMapper
;
import
com.yeejoin.amos.boot.module.cylinder.flc.api.mapper.CylinderFillingMapper
;
import
com.yeejoin.amos.boot.module.cylinder.flc.api.mapper.CylinderInfoMapper
;
import
com.yeejoin.amos.boot.module.cylinder.flc.api.mapper.CylinderInspectionMapper
;
import
com.yeejoin.amos.boot.module.cylinder.flc.api.mapper.CylinderTagsMapper
;
import
com.yeejoin.amos.boot.module.cylinder.flc.api.mapper.CylinderUnitMapper
;
import
java.util.List
;
...
...
@@ -19,8 +26,47 @@ import java.util.List;
@Component
public
class
SyncCylinderDataService
{
/**
* 气瓶企业信息
*/
@Autowired
public
CylinderUnitMapper
cylinderUnitMapper
;
private
CylinderUnitMapper
cylinderUnitMapper
;
/**
* 气瓶基本信息
*/
@Autowired
private
CylinderInfoMapper
cylinderInfoMapper
;
/**
* 气瓶充装信息--充装前检查
*/
@Autowired
private
CylinderFillingMapper
cylinderFillingMapper
;
/**
* 液化气体气瓶充装信息-充装记录
*/
@Autowired
private
CylinderFillingRecord
cylinderFillingRecord
;
/**
* 液化气体气瓶充装信息-充装后复查
*/
@Autowired
private
CylinderFillingCheckMapper
cylinderFillingCheckMapper
;
/**
* 液化气体气瓶充装信息审核
*/
@Autowired
private
CylinderFillingExamineMapper
cylinderFillingExamineMapper
;
/**
* 气瓶标签信息
*/
@Autowired
private
CylinderTagsMapper
cylinderTagsMapper
;
/**
* 气瓶检验信息
*/
@Autowired
private
CylinderInspectionMapper
cylinderInspectionMapper
;
@DS
(
"tzs"
)
public
void
syncCylinderUnit
(
List
<
CylinderUnitDto
>
cylinderUnitDto
)
{
// List<CylinderUnit> cylinderUnits = Bean.toModels(cylinderUnitDto,CylinderUnit.class);
...
...
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