Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
YeeAmosFireAutoSysRoot
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
station
YeeAmosFireAutoSysRoot
Commits
eea6887a
Commit
eea6887a
authored
Aug 12, 2024
by
张森
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
实体创建
parent
cfb9bfd3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
60 additions
and
0 deletions
+60
-0
PlanReport.java
...main/java/com/yeejoin/amos/fas/dao/entity/PlanReport.java
+55
-0
PlanReportMapper.java
...eejoin/amos/fas/business/dao/mapper/PlanReportMapper.java
+5
-0
No files found.
YeeAmosFireAutoSysCommon/src/main/java/com/yeejoin/amos/fas/dao/entity/PlanReport.java
0 → 100644
View file @
eea6887a
package
com
.
yeejoin
.
amos
.
fas
.
dao
.
entity
;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
lombok.Data
;
import
javax.persistence.Column
;
import
javax.persistence.Entity
;
import
javax.persistence.Table
;
import
java.util.Date
;
@Data
@Entity
@Table
(
name
=
"c_plan_report"
)
public
class
PlanReport
extends
BasicEntity
{
private
static
final
long
serialVersionUID
=
1L
;
@Column
(
name
=
"batch_no"
)
private
String
batchNo
;
@Column
(
name
=
"report_url"
)
private
String
reportUrl
;
@Column
(
name
=
"title"
)
private
String
title
;
@Column
(
name
=
"create_date"
)
private
Date
createDate
;
@Column
(
name
=
"address"
)
private
String
address
;
@Column
(
name
=
"compere"
)
private
String
compere
;
@Column
(
name
=
"attend_person"
)
private
String
attendPerson
;
@Column
(
name
=
"drill_topic"
)
private
String
drillTopic
;
@Column
(
name
=
"handle_process"
)
private
String
handleProcess
;
@Column
(
name
=
"drill_summary"
)
private
String
drillSummary
;
@Column
(
name
=
"examine_result"
)
private
String
examineResult
;
@TableField
(
"biz_org_name"
)
private
String
bizOrgName
;
@TableField
(
"biz_org_code"
)
private
String
bizOrgCode
;
}
YeeAmosFireAutoSysService/src/main/java/com/yeejoin/amos/fas/business/dao/mapper/PlanReportMapper.java
0 → 100644
View file @
eea6887a
package
com
.
yeejoin
.
amos
.
fas
.
business
.
dao
.
mapper
;
public
interface
PlanReportMapper
extends
BaseMapper
{
}
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