This commit is contained in:
2025-10-22 20:30:04 +08:00
12 changed files with 453 additions and 81 deletions

View File

@ -0,0 +1,21 @@
package com.pictc.constant;
/**
* @author 张秉卓
* @date 2025年10月22日 下午12:00:34
* @Description: 表名常量
*/
public interface FieldNameConstants {
/**
* 编码
*/
String CODE = "编码";
/**
* 名称
*/
String FULL_NAME = "名称";
}

View File

@ -17,5 +17,16 @@ public interface TableNameConstants {
*/
String LNG_B_CURRENCY = "lng_b_currency";
/**
* 银行表
*/
String LNG_B_BANK = "lng_b_bank";
/**
* 币种表
*/
String LNG_B_REGION = "lng_b_region";
}