1、调整基础配置模块
2、调整车船务模块
This commit is contained in:
@@ -25,6 +25,7 @@
|
||||
*/
|
||||
package org.springblade.system.pojo.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
@@ -93,9 +94,20 @@ public class AirportMaster extends BaseEntity {
|
||||
*/
|
||||
@Schema(description = "所属城市")
|
||||
private String cityName;
|
||||
/**
|
||||
* 所属区县编码
|
||||
*/
|
||||
@Schema(description = "所属区县编码")
|
||||
private String districtCode;
|
||||
/**
|
||||
* 所属区县
|
||||
*/
|
||||
@Schema(description = "所属区县")
|
||||
private String districtName;
|
||||
/**
|
||||
* 行政区划编码
|
||||
*/
|
||||
@TableField(exist = false)
|
||||
@Schema(description = "行政区划编码")
|
||||
private String regionCode;
|
||||
/**
|
||||
|
||||
@@ -95,6 +95,7 @@ public class Currency extends BaseEntity {
|
||||
/**
|
||||
* 是否本位币
|
||||
*/
|
||||
@TableField("is_base_currency")
|
||||
@Schema(description = "是否本位币")
|
||||
private Integer baseCurrency;
|
||||
/**
|
||||
|
||||
@@ -48,14 +48,19 @@ public class FeeItem extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 中文名称
|
||||
* 费用类型
|
||||
*/
|
||||
@Schema(description = "中文名称")
|
||||
@Schema(description = "费用类型")
|
||||
private String feeCategory;
|
||||
/**
|
||||
* 费用项
|
||||
*/
|
||||
@Schema(description = "费用项")
|
||||
private String name;
|
||||
/**
|
||||
* 英文名称
|
||||
* 费用项代码
|
||||
*/
|
||||
@Schema(description = "英文名称")
|
||||
@Schema(description = "费用项代码")
|
||||
private String englishName;
|
||||
|
||||
}
|
||||
|
||||
@@ -25,6 +25,7 @@
|
||||
*/
|
||||
package org.springblade.system.pojo.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
@@ -88,9 +89,20 @@ public class PortTerminal extends BaseEntity {
|
||||
*/
|
||||
@Schema(description = "城市")
|
||||
private String city;
|
||||
/**
|
||||
* 区县编码
|
||||
*/
|
||||
@Schema(description = "区县编码")
|
||||
private String districtCode;
|
||||
/**
|
||||
* 区县
|
||||
*/
|
||||
@Schema(description = "区县")
|
||||
private String districtName;
|
||||
/**
|
||||
* 行政区划编码
|
||||
*/
|
||||
@TableField(exist = false)
|
||||
@Schema(description = "行政区划编码")
|
||||
private String regionCode;
|
||||
/**
|
||||
|
||||
@@ -25,6 +25,7 @@
|
||||
*/
|
||||
package org.springblade.system.pojo.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
@@ -93,9 +94,20 @@ public class RailwayStation extends BaseEntity {
|
||||
*/
|
||||
@Schema(description = "所属城市")
|
||||
private String cityName;
|
||||
/**
|
||||
* 所属区县编码
|
||||
*/
|
||||
@Schema(description = "所属区县编码")
|
||||
private String districtCode;
|
||||
/**
|
||||
* 所属区县
|
||||
*/
|
||||
@Schema(description = "所属区县")
|
||||
private String districtName;
|
||||
/**
|
||||
* 行政区划编码
|
||||
*/
|
||||
@TableField(exist = false)
|
||||
@Schema(description = "行政区划编码")
|
||||
private String regionCode;
|
||||
/**
|
||||
|
||||
@@ -27,6 +27,7 @@ package org.springblade.system.pojo.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
@@ -134,5 +135,12 @@ public class Region implements Serializable {
|
||||
@Schema(description = "备注")
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* 原区划编号
|
||||
*/
|
||||
@TableField(exist = false)
|
||||
@Schema(description = "原区划编号")
|
||||
private String originalCode;
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user