重新生成
This commit is contained in:
@ -19,7 +19,7 @@ import com.pictc.annotations.datalog.LogTable;
|
||||
/**
|
||||
* @title: 银行
|
||||
* @Author 管理员
|
||||
* @Date: 2025-10-21
|
||||
* @Date: 2025-10-22
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
|
||||
@ -19,7 +19,7 @@ import com.pictc.annotations.datalog.LogTable;
|
||||
/**
|
||||
* @title: 国家地区
|
||||
* @Author 管理员
|
||||
* @Date: 2025-10-21
|
||||
* @Date: 2025-10-22
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
|
||||
@ -14,7 +14,7 @@ import java.math.BigDecimal;
|
||||
/**
|
||||
* @title: 分页查询入参
|
||||
* @Author 管理员
|
||||
* @Date: 2025-10-21
|
||||
* @Date: 2025-10-22
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
@ -41,5 +41,20 @@ public class LngBBankPageDto extends PageInput {
|
||||
*/
|
||||
@ApiModelProperty("有效标志(Y-有效,N-无效)")
|
||||
private String valid;
|
||||
/**
|
||||
* 名称(不能与名称、简称重复)
|
||||
*/
|
||||
@ApiModelProperty("名称(不能与名称、简称重复)")
|
||||
private String fullName;
|
||||
/**
|
||||
* 助记码(自动生成,4位,0001……)
|
||||
*/
|
||||
@ApiModelProperty("助记码(自动生成,4位,0001……)")
|
||||
private String code;
|
||||
/**
|
||||
* SWIFT
|
||||
*/
|
||||
@ApiModelProperty("SWIFT")
|
||||
private String swift;
|
||||
|
||||
}
|
||||
|
||||
@ -21,37 +21,27 @@ import java.math.BigDecimal;
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
public class LngBCurrencyPageDto extends PageInput {
|
||||
|
||||
/**
|
||||
* 助记码(USD/CNY)
|
||||
*/
|
||||
@ApiModelProperty("助记码(USD/CNY)")
|
||||
private String code;
|
||||
/**
|
||||
* 名称(不能重复)
|
||||
*/
|
||||
@ApiModelProperty("名称(不能重复)")
|
||||
private String fullName;
|
||||
/**
|
||||
* 符号
|
||||
* 有效标志(Y-有效,N-无效)
|
||||
*/
|
||||
@ApiModelProperty("符号")
|
||||
private String currSymbol;
|
||||
@ApiModelProperty("有效标志(Y-有效,N-无效)")
|
||||
private String valid;
|
||||
/**
|
||||
* 助记码(USD/CNY)
|
||||
*/
|
||||
@ApiModelProperty("助记码(USD/CNY)")
|
||||
private String code;
|
||||
/**
|
||||
* 是否本币(Y-是,N-否;只能有一个有效的Y)
|
||||
*/
|
||||
@ApiModelProperty("是否本币(Y-是,N-否;只能有一个有效的Y)")
|
||||
private String localSign;
|
||||
/**
|
||||
* 显示顺序
|
||||
*/
|
||||
@ApiModelProperty("显示顺序")
|
||||
private Short sort;
|
||||
/**
|
||||
* 有效标志(Y-有效,N-无效)
|
||||
*/
|
||||
@ApiModelProperty("有效标志(Y-有效,N-无效)")
|
||||
private String valid;
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
@ApiModelProperty("备注")
|
||||
|
||||
@ -21,40 +21,15 @@ import java.math.BigDecimal;
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
public class LngBPriceTermPageDto extends PageInput {
|
||||
|
||||
/**
|
||||
* 助记码(FOB/DES/……)
|
||||
*/
|
||||
@ApiModelProperty("助记码(FOB/DES/……)")
|
||||
private String code;
|
||||
/**
|
||||
* 名称(不能重复)
|
||||
*/
|
||||
@ApiModelProperty("名称(不能重复)")
|
||||
private String fullName;
|
||||
/**
|
||||
* 是否承担运费(Y-是,N-否)
|
||||
*/
|
||||
@ApiModelProperty("是否承担运费(Y-是,N-否)")
|
||||
private String freightSign;
|
||||
/**
|
||||
* 是否承担保险(Y-是,N-否)
|
||||
*/
|
||||
@ApiModelProperty("是否承担保险(Y-是,N-否)")
|
||||
private String insuranceSign;
|
||||
/**
|
||||
* 显示顺序
|
||||
*/
|
||||
@ApiModelProperty("显示顺序")
|
||||
private Short sort;
|
||||
/**
|
||||
* 有效标志(Y-有效,N-无效)
|
||||
*/
|
||||
@ApiModelProperty("有效标志(Y-有效,N-无效)")
|
||||
private String valid;
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
@ApiModelProperty("备注")
|
||||
private String note;
|
||||
|
||||
}
|
||||
|
||||
@ -14,28 +14,23 @@ import java.math.BigDecimal;
|
||||
/**
|
||||
* @title: 分页查询入参
|
||||
* @Author 管理员
|
||||
* @Date: 2025-10-21
|
||||
* @Date: 2025-10-22
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
public class LngBRegionPageDto extends PageInput {
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
@ApiModelProperty("主键")
|
||||
private Long id;
|
||||
/**
|
||||
* 助记码
|
||||
*/
|
||||
@ApiModelProperty("助记码")
|
||||
private String code;
|
||||
/**
|
||||
* 创建人id
|
||||
* 名称(不能重复)
|
||||
*/
|
||||
@ApiModelProperty("创建人id")
|
||||
private Long createUserId;
|
||||
@ApiModelProperty("名称(不能重复)")
|
||||
private String fullName;
|
||||
/**
|
||||
* 类型
|
||||
*/
|
||||
@ -47,10 +42,10 @@ public class LngBRegionPageDto extends PageInput {
|
||||
@ApiModelProperty("上级ID")
|
||||
private Long pid;
|
||||
/**
|
||||
* 名称(不能重复)
|
||||
* 全路径名称
|
||||
*/
|
||||
@ApiModelProperty("名称(不能重复)")
|
||||
private String fullName;
|
||||
@ApiModelProperty("全路径名称")
|
||||
private String fullPath;
|
||||
/**
|
||||
* 有效标志(Y-有效,N-无效)
|
||||
*/
|
||||
|
||||
@ -24,7 +24,7 @@ import com.pictc.annotations.datalog.ValueDirectionType;
|
||||
/**
|
||||
* @title: 银行
|
||||
* @Author 管理员
|
||||
* @Date: 2025-10-21
|
||||
* @Date: 2025-10-22
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
|
||||
@ -24,7 +24,7 @@ import com.pictc.annotations.datalog.ValueDirectionType;
|
||||
/**
|
||||
* @title: 国家地区
|
||||
* @Author 管理员
|
||||
* @Date: 2025-10-21
|
||||
* @Date: 2025-10-22
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
|
||||
@ -13,7 +13,7 @@ import java.math.BigDecimal;
|
||||
/**
|
||||
* @title: 分页列表出参
|
||||
* @Author 管理员
|
||||
* @Date: 2025-10-21
|
||||
* @Date: 2025-10-22
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
@ -25,6 +25,16 @@ public class LngBBankPageVo {
|
||||
@ApiModelProperty("主键")
|
||||
private String id;
|
||||
/**
|
||||
* 助记码(自动生成,4位,0001……)
|
||||
*/
|
||||
@ApiModelProperty("助记码(自动生成,4位,0001……)")
|
||||
private String code;
|
||||
/**
|
||||
* 名称(不能与名称、简称重复)
|
||||
*/
|
||||
@ApiModelProperty("名称(不能与名称、简称重复)")
|
||||
private String fullName;
|
||||
/**
|
||||
* 简称(不能与名称、简称重复)
|
||||
*/
|
||||
@ApiModelProperty("简称(不能与名称、简称重复)")
|
||||
@ -40,6 +50,11 @@ public class LngBBankPageVo {
|
||||
@ApiModelProperty("所属国家和地区")
|
||||
private String regionCode;
|
||||
/**
|
||||
* SWIFT
|
||||
*/
|
||||
@ApiModelProperty("SWIFT")
|
||||
private String swift;
|
||||
/**
|
||||
* 有效标志(Y-有效,N-无效)
|
||||
*/
|
||||
@ApiModelProperty("有效标志(Y-有效,N-无效)")
|
||||
|
||||
@ -11,7 +11,7 @@ import java.util.List;
|
||||
/**
|
||||
* @title: 表单出参
|
||||
* @Author 管理员
|
||||
* @Date: 2025-10-21
|
||||
* @Date: 2025-10-22
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
|
||||
@ -35,22 +35,12 @@ public class LngBCurrencyPageVo {
|
||||
@ApiModelProperty("名称(不能重复)")
|
||||
private String fullName;
|
||||
/**
|
||||
* 符号
|
||||
*/
|
||||
@ApiModelProperty("符号")
|
||||
private String currSymbol;
|
||||
/**
|
||||
* 是否本币(Y-是,N-否;只能有一个有效的Y)
|
||||
*/
|
||||
@ApiModelProperty("是否本币(Y-是,N-否;只能有一个有效的Y)")
|
||||
@Trans(type = TransType.DIC, id = "1978056598125330433")
|
||||
private String localSign;
|
||||
/**
|
||||
* 显示顺序
|
||||
*/
|
||||
@ApiModelProperty("显示顺序")
|
||||
private Short sort;
|
||||
/**
|
||||
* 有效标志(Y-有效,N-无效)
|
||||
*/
|
||||
@ApiModelProperty("有效标志(Y-有效,N-无效)")
|
||||
|
||||
@ -47,11 +47,6 @@ public class LngBPriceTermPageVo {
|
||||
@Trans(type = TransType.DIC, id = "1978056598125330433")
|
||||
private String insuranceSign;
|
||||
/**
|
||||
* 显示顺序
|
||||
*/
|
||||
@ApiModelProperty("显示顺序")
|
||||
private Short sort;
|
||||
/**
|
||||
* 有效标志(Y-有效,N-无效)
|
||||
*/
|
||||
@ApiModelProperty("有效标志(Y-有效,N-无效)")
|
||||
|
||||
@ -13,7 +13,7 @@ import java.math.BigDecimal;
|
||||
/**
|
||||
* @title: 分页列表出参
|
||||
* @Author 管理员
|
||||
* @Date: 2025-10-21
|
||||
* @Date: 2025-10-22
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
@ -46,6 +46,11 @@ public class LngBRegionPageVo {
|
||||
@ApiModelProperty("上级ID")
|
||||
private Long pid;
|
||||
/**
|
||||
* 全路径名称
|
||||
*/
|
||||
@ApiModelProperty("全路径名称")
|
||||
private String fullPath;
|
||||
/**
|
||||
* 有效标志(Y-有效,N-无效)
|
||||
*/
|
||||
@ApiModelProperty("有效标志(Y-有效,N-无效)")
|
||||
@ -56,15 +61,5 @@ public class LngBRegionPageVo {
|
||||
*/
|
||||
@ApiModelProperty("备注")
|
||||
private String note;
|
||||
/**
|
||||
* 创建人id
|
||||
*/
|
||||
@ApiModelProperty("创建人id")
|
||||
private Long createUserId;
|
||||
/**
|
||||
* 数据权限id
|
||||
*/
|
||||
@ApiModelProperty("数据权限id")
|
||||
private Long ruleUserId;
|
||||
|
||||
}
|
||||
|
||||
@ -11,7 +11,7 @@ import java.util.List;
|
||||
/**
|
||||
* @title: 表单出参
|
||||
* @Author 管理员
|
||||
* @Date: 2025-10-21
|
||||
* @Date: 2025-10-22
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
|
||||
Reference in New Issue
Block a user