脚手架完善

This commit is contained in:
谭凯凯 2025-02-11 14:46:27 +08:00 committed by Tankaikai
parent 6e8b2558bf
commit 0741b87a03
1 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,54 @@
package com.czg.constant;
/**
* 全局常量类
* @author tankaikai
* @since 2025-02-11 14:35
*/
public interface GlobalConstant {
/**
* 有效状态
*/
interface Status {
/**
* 启用
*/
int ENABLE = 1;
/**
* 禁用
*/
int DISABLE = 0;
}
/**
* 逻辑删除
*/
interface IsDel {
/**
* 正常
*/
int NORMAL = 0;
/**
* 正常
*/
int DELETED = 1;
}
/**
* 是否
*/
interface YesNo {
/**
* 正常
*/
int YES = 1;
/**
* 正常
*/
int NO = 0;
}
}