增加字段名称常量类

This commit is contained in:
张秉卓
2025-10-22 16:38:47 +08:00
parent 7ccafb5f50
commit 2f2d72abfb

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 = "名称";
}