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
52d6ce92
Commit
52d6ce92
authored
Sep 20, 2022
by
xixinzhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
校验报告
parent
387b7f18
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
104 additions
and
0 deletions
+104
-0
CheckReport.java
.../yeejoin/amos/boot/module/tdc/api/entity/CheckReport.java
+44
-0
CheckReportMapper.java
...in/amos/boot/module/tdc/api/mapper/CheckReportMapper.java
+12
-0
CheckReportService.java
.../amos/boot/module/tdc/api/service/CheckReportService.java
+12
-0
CheckReportMapper.xml
...e-tdc-api/src/main/resources/mapper/CheckReportMapper.xml
+5
-0
CheckReportController.java
...boot/module/tdc/biz/controller/CheckReportController.java
+16
-0
CheckReportImpl.java
...mos/boot/module/tdc/biz/service/impl/CheckReportImpl.java
+15
-0
No files found.
amos-boot-system-tdc/amos-boot-module-tdc-api/src/main/java/com/yeejoin/amos/boot/module/tdc/api/entity/CheckReport.java
0 → 100644
View file @
52d6ce92
package
com
.
yeejoin
.
amos
.
boot
.
module
.
tdc
.
api
.
entity
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.experimental.Accessors
;
import
java.util.Date
;
/**
* @author DELL
*/
@Data
@Accessors
(
chain
=
true
)
@TableName
(
"tdc_report"
)
@ApiModel
(
value
=
"CheckReport对象"
,
description
=
"校验报告表"
)
public
class
CheckReport
{
private
static
final
long
serialVersionUID
=
1L
;
@TableId
(
value
=
"sequence_nbr"
,
type
=
IdType
.
ID_WORKER
)
protected
Long
sequenceNbr
;
@ApiModelProperty
(
value
=
"报告名称"
)
private
String
name
;
@ApiModelProperty
(
value
=
"机构code"
)
private
String
amosOrgCode
;
@ApiModelProperty
(
value
=
"机构名称"
)
private
String
amosOrgName
;
@ApiModelProperty
(
value
=
"报告地址"
)
private
String
reportUrl
;
@ApiModelProperty
(
value
=
"创建时间"
)
private
Date
createDate
;
@ApiModelProperty
(
value
=
"校验人名称"
)
private
String
checkPeopleName
;
}
amos-boot-system-tdc/amos-boot-module-tdc-api/src/main/java/com/yeejoin/amos/boot/module/tdc/api/mapper/CheckReportMapper.java
0 → 100644
View file @
52d6ce92
package
com
.
yeejoin
.
amos
.
boot
.
module
.
tdc
.
api
.
mapper
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.yeejoin.amos.boot.module.tdc.api.entity.CheckReport
;
import
org.mapstruct.Mapper
;
/**
* @author DELL
*/
@Mapper
public
interface
CheckReportMapper
extends
BaseMapper
<
CheckReport
>
{
}
amos-boot-system-tdc/amos-boot-module-tdc-api/src/main/java/com/yeejoin/amos/boot/module/tdc/api/service/CheckReportService.java
0 → 100644
View file @
52d6ce92
package
com
.
yeejoin
.
amos
.
boot
.
module
.
tdc
.
api
.
service
;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.yeejoin.amos.boot.module.tdc.api.entity.CheckReport
;
import
org.springframework.stereotype.Service
;
/**
* @author DELL
*/
@Service
public
interface
CheckReportService
extends
IService
<
CheckReport
>
{
}
amos-boot-system-tdc/amos-boot-module-tdc-api/src/main/resources/mapper/CheckReportMapper.xml
0 → 100644
View file @
52d6ce92
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.yeejoin.amos.boot.module.tdc.api.mapper.CheckReportMapper"
>
</mapper>
amos-boot-system-tdc/amos-boot-module-tdc-biz/src/main/java/com/yeejoin/amos/boot/module/tdc/biz/controller/CheckReportController.java
0 → 100644
View file @
52d6ce92
package
com
.
yeejoin
.
amos
.
boot
.
module
.
tdc
.
biz
.
controller
;
import
io.swagger.annotations.Api
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
/**
* 校验报告
* @author DELL
*/
@RestController
@Api
(
tags
=
"校验报告api"
)
@RequestMapping
(
value
=
"/report"
)
public
class
CheckReportController
{
}
amos-boot-system-tdc/amos-boot-module-tdc-biz/src/main/java/com/yeejoin/amos/boot/module/tdc/biz/service/impl/CheckReportImpl.java
0 → 100644
View file @
52d6ce92
package
com
.
yeejoin
.
amos
.
boot
.
module
.
tdc
.
biz
.
service
.
impl
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.yeejoin.amos.boot.module.tdc.api.entity.CheckReport
;
import
com.yeejoin.amos.boot.module.tdc.api.mapper.CheckReportMapper
;
import
com.yeejoin.amos.boot.module.tdc.api.service.CheckModelService
;
import
com.yeejoin.amos.boot.module.tdc.api.service.CheckReportService
;
import
org.springframework.stereotype.Service
;
/**
* @author DELL
*/
@Service
public
class
CheckReportImpl
extends
ServiceImpl
<
CheckReportMapper
,
CheckReport
>
implements
CheckReportService
{
}
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