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
80115998
Commit
80115998
authored
Nov 08, 2024
by
韩桐桐
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(jg):tzs_sh_car_equ,tzs_sh_car代码生成
parent
1412bb3c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
64 additions
and
63 deletions
+64
-63
ShCar.java
...ava/com/yeejoin/amos/boot/module/jg/api/entity/ShCar.java
+39
-38
ShCarEqu.java
.../com/yeejoin/amos/boot/module/jg/api/entity/ShCarEqu.java
+25
-25
No files found.
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-api/src/main/java/com/yeejoin/amos/boot/module/jg/api/entity/ShCar.java
View file @
80115998
...
...
@@ -2,10 +2,10 @@ package com.yeejoin.amos.boot.module.jg.api.entity;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
lombok.*
;
import
org.typroject.tyboot.core.rdbms.orm.entity.BaseEntity
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
lombok.experimental.Accessors
;
import
java.util.Date
;
/**
...
...
@@ -15,195 +15,196 @@ import java.util.Date;
* @date 2024-11-08
*/
@Data
@EqualsAndHashCode
(
callSuper
=
true
)
@Accessors
(
chain
=
true
)
@TableName
(
"tzs_sh_car"
)
public
class
ShCar
extends
BaseEntity
{
@AllArgsConstructor
@NoArgsConstructor
@Builder
public
class
ShCar
{
private
static
final
long
serialVersionUID
=
1L
;
/**
* seq
*/
@TableField
(
value
=
"\"SEQUENCE_NBR\""
)
@TableField
(
value
=
"\"SEQUENCE_NBR\""
)
private
String
sequenceNbr
;
/**
* 登记机关
*/
@TableField
(
value
=
"\"REGISTRATION_AGENCY\""
)
@TableField
(
value
=
"\"REGISTRATION_AGENCY\""
)
private
String
registrationAgency
;
/**
* 登记机关代码
*/
@TableField
(
value
=
"\"REGISTRATION_AGENCY_CODE\""
)
@TableField
(
value
=
"\"REGISTRATION_AGENCY_CODE\""
)
private
String
registrationAgencyCode
;
/**
* 使用登记证代码
*/
@TableField
(
value
=
"\"USE_REGISTRATION_CODE\""
)
@TableField
(
value
=
"\"USE_REGISTRATION_CODE\""
)
private
String
useRegistrationCode
;
/**
* 气瓶安装日期
*/
@TableField
(
value
=
"\"INSTALL_START_DATE\""
)
@TableField
(
value
=
"\"INSTALL_START_DATE\""
)
private
Date
installStartDate
;
/**
* 车辆属性
A 代表 私家车 B代表公交车 C代表快捷货运 H 代表营运车 P代表公务车 V 代表微型货运车 X代表 其他 T代表出租车 J代表教练车
* A 代表 私家车 B代表公交车 C代表快捷货运 H 代表营运车 P代表公务车 V 代表微型货运车 X代表 其他 T代表出租车 J代表教练车
*/
@TableField
(
value
=
"\"VEHICLE_ATTRIBUTE\""
)
@TableField
(
value
=
"\"VEHICLE_ATTRIBUTE\""
)
private
String
vehicleAttribute
;
/**
* 车牌号
*/
@TableField
(
value
=
"\"CAR_NUMBER\""
)
@TableField
(
value
=
"\"CAR_NUMBER\""
)
private
String
carNumber
;
/**
* 车架号
*/
@TableField
(
value
=
"\"FRAME_NUMBER\""
)
@TableField
(
value
=
"\"FRAME_NUMBER\""
)
private
String
frameNumber
;
/**
* 登记日期
*/
@TableField
(
value
=
"\"REG_DATE\""
)
@TableField
(
value
=
"\"REG_DATE\""
)
private
Date
regDate
;
/**
* 停用日期
*/
@TableField
(
value
=
"\"DEA_DATE\""
)
@TableField
(
value
=
"\"DEA_DATE\""
)
private
Date
deaDate
;
/**
* 发动机号
*/
@TableField
(
value
=
"\"ENGINE_NUMBER\""
)
@TableField
(
value
=
"\"ENGINE_NUMBER\""
)
private
String
engineNumber
;
/**
* 气瓶数量
*/
@TableField
(
value
=
"\"BATCH_QUANTITY\""
)
@TableField
(
value
=
"\"BATCH_QUANTITY\""
)
private
Integer
batchQuantity
;
/**
* 车辆品牌型号
*/
@TableField
(
value
=
"\"VEHICLE_BRAND_MODEL\""
)
@TableField
(
value
=
"\"VEHICLE_BRAND_MODEL\""
)
private
String
vehicleBrandModel
;
/**
* 证打印标识
*/
@TableField
(
value
=
"\"CERTIFICATE_PRINT_FLAG\""
)
@TableField
(
value
=
"\"CERTIFICATE_PRINT_FLAG\""
)
private
String
certificatePrintFlag
;
/**
* 联系人
*/
@TableField
(
value
=
"\"CONTACT_PERSON\""
)
@TableField
(
value
=
"\"CONTACT_PERSON\""
)
private
String
contactPerson
;
/**
* 联系电话
*/
@TableField
(
value
=
"\"CONTACT_PHONE\""
)
@TableField
(
value
=
"\"CONTACT_PHONE\""
)
private
String
contactPhone
;
/**
* 所有人
*/
@TableField
(
value
=
"\"OWNER\""
)
@TableField
(
value
=
"\"OWNER\""
)
private
String
owner
;
/**
* 安装单位
*/
@TableField
(
value
=
"\"INSTALLATION_UNIT\""
)
@TableField
(
value
=
"\"INSTALLATION_UNIT\""
)
private
String
installationUnit
;
/**
* 改装车是否打印备案通知单
原装车 忽略看
*
原装车 忽略看
*/
@TableField
(
value
=
"\"IF_FLAG\""
)
@TableField
(
value
=
"\"IF_FLAG\""
)
private
String
ifFlag
;
/**
* 第一次打印证日期
*/
@TableField
(
value
=
"\"PRINT_DATE\""
)
@TableField
(
value
=
"\"PRINT_DATE\""
)
private
Date
printDate
;
/**
* 充装介质
*/
@TableField
(
value
=
"\"MEDIA\""
)
@TableField
(
value
=
"\"MEDIA\""
)
private
String
media
;
/**
* 最新检验报告编号
*/
@TableField
(
value
=
"\"LAST_INSPECT_REPORT_NO\""
)
@TableField
(
value
=
"\"LAST_INSPECT_REPORT_NO\""
)
private
String
lastInspectReportNo
;
/**
* 气瓶状态
0正常 1变更 2报废 3注销 4启用 5停用 6注销
*
0正常 1变更 2报废 3注销 4启用 5停用 6注销
*/
@TableField
(
value
=
"\"STATE\""
)
@TableField
(
value
=
"\"STATE\""
)
private
Integer
state
;
/**
* 登记单位
*/
@TableField
(
value
=
"\"REG_UNIT\""
)
@TableField
(
value
=
"\"REG_UNIT\""
)
private
String
regUnit
;
/**
* 总容积
*/
@TableField
(
value
=
"\"TOTAL_VOLUME\""
)
@TableField
(
value
=
"\"TOTAL_VOLUME\""
)
private
String
totalVolume
;
/**
* 监检/检验单位
*/
@TableField
(
value
=
"\"INSPECTION_UNIT\""
)
@TableField
(
value
=
"\"INSPECTION_UNIT\""
)
private
String
inspectionUnit
;
/**
* 气瓶加装方式
*/
@TableField
(
value
=
"\"CYLINDER_INSTALLATION_METHOD\""
)
@TableField
(
value
=
"\"CYLINDER_INSTALLATION_METHOD\""
)
private
String
cylinderInstallationMethod
;
/**
* 住址
*/
@TableField
(
value
=
"\"ADDRESS\""
)
@TableField
(
value
=
"\"ADDRESS\""
)
private
String
address
;
/**
* 上一次检验报告编号
*/
@TableField
(
value
=
"\"PREVIOUS_INSPECTION_REPORT_NUMBER\""
)
@TableField
(
value
=
"\"PREVIOUS_INSPECTION_REPORT_NUMBER\""
)
private
String
previousInspectionReportNumber
;
/**
* 是否认领
*/
@TableField
(
value
=
"\"CLAIMED_FLAG\""
)
@TableField
(
value
=
"\"CLAIMED_FLAG\""
)
private
String
claimedFlag
;
}
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-api/src/main/java/com/yeejoin/amos/boot/module/jg/api/entity/ShCarEqu.java
View file @
80115998
...
...
@@ -2,138 +2,138 @@ package com.yeejoin.amos.boot.module.jg.api.entity;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
lombok.*
;
import
org.typroject.tyboot.core.rdbms.orm.entity.BaseEntity
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
lombok.experimental.Accessors
;
import
java.util.Date
;
/**
*
*
* @author system_generator
* @date 2024-11-08
*/
@Data
@EqualsAndHashCode
(
callSuper
=
true
)
@Accessors
(
chain
=
true
)
@TableName
(
"tzs_sh_car_equ"
)
public
class
ShCarEqu
extends
BaseEntity
{
@AllArgsConstructor
@NoArgsConstructor
@Builder
public
class
ShCarEqu
{
private
static
final
long
serialVersionUID
=
1L
;
/**
* primary key
*/
@TableField
(
value
=
"\"SEQUENCE_NBR\""
)
@TableField
(
value
=
"\"SEQUENCE_NBR\""
)
private
String
sequenceNbr
;
/**
* tzs_sh_car表主键
*/
@TableField
(
value
=
"\"CAR_ID\""
)
@TableField
(
value
=
"\"CAR_ID\""
)
private
String
carId
;
/**
* 设备编号
*/
@TableField
(
value
=
"\"SEQUENCE_CODE\""
)
@TableField
(
value
=
"\"SEQUENCE_CODE\""
)
private
String
sequenceCode
;
/**
* 设备代码
*/
@TableField
(
value
=
"\"EQU_CODE\""
)
@TableField
(
value
=
"\"EQU_CODE\""
)
private
String
equCode
;
/**
* 制造日期
*/
@TableField
(
value
=
"\"PRODUCE_DATE\""
)
@TableField
(
value
=
"\"PRODUCE_DATE\""
)
private
Date
produceDate
;
/**
* 安装日期
*/
@TableField
(
value
=
"\"EQU_INSTALLDATE\""
)
@TableField
(
value
=
"\"EQU_INSTALLDATE\""
)
private
Date
equInstalldate
;
/**
* 检查日期
*/
@TableField
(
value
=
"\"EQU_CHECKDATE\""
)
@TableField
(
value
=
"\"EQU_CHECKDATE\""
)
private
Date
equCheckdate
;
/**
* firstDate
*/
@TableField
(
value
=
"\"EQU_FIRSTDATE\""
)
@TableField
(
value
=
"\"EQU_FIRSTDATE\""
)
private
Date
equFirstdate
;
/**
* 序号
*/
@TableField
(
value
=
"\"SERIAL_NUMBER\""
)
@TableField
(
value
=
"\"SERIAL_NUMBER\""
)
private
String
serialNumber
;
/**
* sub_DM 代码
*/
@TableField
(
value
=
"\"EQU_DM\""
)
@TableField
(
value
=
"\"EQU_DM\""
)
private
String
equDm
;
/**
* 单位编号
*/
@TableField
(
value
=
"\"EQU_DWBH\""
)
@TableField
(
value
=
"\"EQU_DWBH\""
)
private
String
equDwbh
;
/**
* 公称工作压力(MPa)
*/
@TableField
(
value
=
"\"EQU_QPGC\""
)
@TableField
(
value
=
"\"EQU_QPGC\""
)
private
String
equQpgc
;
/**
* 气瓶批号
*/
@TableField
(
value
=
"\"BATCH_NUMBER\""
)
@TableField
(
value
=
"\"BATCH_NUMBER\""
)
private
String
batchNumber
;
/**
* PFZZDW PF制造单位
*/
@TableField
(
value
=
"\"EQU_PFZZDW\""
)
@TableField
(
value
=
"\"EQU_PFZZDW\""
)
private
String
equPfzzdw
;
/**
* isChange
*/
@TableField
(
value
=
"\"ISCHANGE\""
)
@TableField
(
value
=
"\"ISCHANGE\""
)
private
Integer
ischange
;
/**
* 报告编号
*/
@TableField
(
value
=
"\"REPORTCODE\""
)
@TableField
(
value
=
"\"REPORTCODE\""
)
private
String
reportcode
;
/**
* BFReportCode
*/
@TableField
(
value
=
"\"BFREPORTCODE\""
)
@TableField
(
value
=
"\"BFREPORTCODE\""
)
private
String
bfreportcode
;
/**
* 操作方式
*/
@TableField
(
value
=
"\"EQU_CZFS\""
)
@TableField
(
value
=
"\"EQU_CZFS\""
)
private
String
equCzfs
;
/**
* 是否认领
*/
@TableField
(
value
=
"\"CLAIMED_FLAG\""
)
@TableField
(
value
=
"\"CLAIMED_FLAG\""
)
private
String
claimedFlag
;
}
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