1、修复基础配置
2、修复业务模块
This commit is contained in:
+2
-2
@@ -60,9 +60,9 @@ public class RailwayStation extends BaseEntity {
|
||||
@Schema(description = "TMIS国标编码")
|
||||
private String tmisCode;
|
||||
/**
|
||||
* 电报码
|
||||
* 电报略码
|
||||
*/
|
||||
@Schema(description = "电报码")
|
||||
@Schema(description = "电报略码")
|
||||
private String telegraphCode;
|
||||
/**
|
||||
* 车站名称
|
||||
|
||||
+35
@@ -34,6 +34,7 @@ import lombok.Data;
|
||||
|
||||
import java.io.Serial;
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 行政区划表实体类
|
||||
@@ -134,6 +135,40 @@ public class Region implements Serializable {
|
||||
*/
|
||||
@Schema(description = "备注")
|
||||
private String remark;
|
||||
/**
|
||||
* 数据来源
|
||||
*/
|
||||
@Schema(description = "数据来源")
|
||||
private String dataSource;
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
@TableField("create_user")
|
||||
@Schema(description = "创建人")
|
||||
private Long createUser;
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@TableField("create_time")
|
||||
@Schema(description = "创建时间")
|
||||
private Date createTime;
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
@TableField("update_user")
|
||||
@Schema(description = "更新人")
|
||||
private Long updateUser;
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@TableField("update_time")
|
||||
@Schema(description = "更新时间")
|
||||
private Date updateTime;
|
||||
/**
|
||||
* 状态:1启用,2停用
|
||||
*/
|
||||
@Schema(description = "状态")
|
||||
private Integer status;
|
||||
|
||||
/**
|
||||
* 原区划编号
|
||||
|
||||
+7
@@ -112,6 +112,13 @@ public class ContractManage extends TenantEntity {
|
||||
@TableField(insertStrategy = FieldStrategy.ALWAYS, updateStrategy = FieldStrategy.ALWAYS)
|
||||
private Integer copyCount;
|
||||
|
||||
@Schema(description = "结算币种")
|
||||
private String settlementCurrency;
|
||||
|
||||
@Schema(description = "开票周期(天)")
|
||||
@TableField(insertStrategy = FieldStrategy.ALWAYS, updateStrategy = FieldStrategy.ALWAYS)
|
||||
private Integer invoiceCycle;
|
||||
|
||||
@Schema(description = "回款账期(天)")
|
||||
@TableField(insertStrategy = FieldStrategy.ALWAYS, updateStrategy = FieldStrategy.ALWAYS)
|
||||
private Integer paymentDays;
|
||||
|
||||
+5
@@ -59,6 +59,11 @@ public class TransportPlanVO extends TransportPlan {
|
||||
@TableField(exist = false)
|
||||
@Schema(description = "更新人姓名")
|
||||
private String updateUserName;
|
||||
|
||||
@TableField(exist = false)
|
||||
@Schema(description = "合同编号")
|
||||
private String contractNo;
|
||||
|
||||
@TableField(exist = false)
|
||||
@Schema(description = "业务状态名称")
|
||||
private String businessStatusName;
|
||||
|
||||
Reference in New Issue
Block a user