Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-zx-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
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
Jobs
Commits
Open sidebar
项目统一框架
一体化_户用光伏项目代码
amos-boot-zx-biz
Commits
428ccd29
Commit
428ccd29
authored
Jul 16, 2024
by
chenzhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加合同记录信息表
parent
2dd7b7da
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
95 additions
and
0 deletions
+95
-0
HygfContractCallRecordDto.java
...s/boot/module/hygf/api/dto/HygfContractCallRecordDto.java
+30
-0
HygfContractCallRecord.java
...s/boot/module/hygf/api/entity/HygfContractCallRecord.java
+46
-0
HygfContractCallRecordMapper.java
.../module/hygf/api/mapper/HygfContractCallRecordMapper.java
+14
-0
HygfContractCallRecordMapper.xml
...n/resources/mapper/mysql/HygfContractCallRecordMapper.xml
+5
-0
No files found.
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/java/com/yeejoin/amos/boot/module/hygf/api/dto/HygfContractCallRecordDto.java
0 → 100644
View file @
428ccd29
package
com
.
yeejoin
.
amos
.
boot
.
module
.
hygf
.
api
.
dto
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
com.yeejoin.amos.boot.biz.common.dto.BaseDto
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
java.util.Date
;
/**
*
*
* @author system_generator
* @date 2024-07-15
*/
@Data
@EqualsAndHashCode
(
callSuper
=
true
)
@ApiModel
(
value
=
"HygfContractCallRecordDto"
,
description
=
""
)
public
class
HygfContractCallRecordDto
extends
BaseDto
{
private
static
final
long
serialVersionUID
=
1L
;
private
String
contractId
;
private
String
data
;
private
String
status
;
}
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/java/com/yeejoin/amos/boot/module/hygf/api/entity/HygfContractCallRecord.java
0 → 100644
View file @
428ccd29
package
com
.
yeejoin
.
amos
.
boot
.
module
.
hygf
.
api
.
entity
;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.yeejoin.amos.boot.biz.common.entity.BaseEntity
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
lombok.experimental.Accessors
;
import
java.util.Date
;
/**
*
*
* @author system_generator
* @date 2024-07-15
*/
@Data
@EqualsAndHashCode
()
@Accessors
(
chain
=
true
)
@TableName
(
"hygf_contract_call_record"
)
public
class
HygfContractCallRecord
{
private
static
final
long
serialVersionUID
=
1L
;
/**
*
*/
@TableField
(
"contract_id"
)
private
String
contractId
;
/**
*
*/
@TableField
(
"data"
)
private
String
data
;
/**
*
*/
@TableField
(
"status"
)
private
String
status
;
@TableField
(
"rec_date"
)
private
Date
recDate
;
}
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/java/com/yeejoin/amos/boot/module/hygf/api/mapper/HygfContractCallRecordMapper.java
0 → 100644
View file @
428ccd29
package
com
.
yeejoin
.
amos
.
boot
.
module
.
hygf
.
api
.
mapper
;
import
com.yeejoin.amos.boot.module.hygf.api.entity.HygfContractCallRecord
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
/**
* Mapper 接口
*
* @author system_generator
* @date 2024-07-15
*/
public
interface
HygfContractCallRecordMapper
extends
BaseMapper
<
HygfContractCallRecord
>
{
}
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/resources/mapper/mysql/HygfContractCallRecordMapper.xml
0 → 100644
View file @
428ccd29
<?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.hygf.api.mapper.HygfContractCallRecordMapper"
>
</mapper>
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