first commit

This commit is contained in:
蔡浩珊_信息数字化部
2026-05-23 17:20:26 +08:00
commit f053037227
152 changed files with 10574 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
package com.mikufufu.common.constant;
public interface Constant {
Integer YES = 1;
Integer NO = 0;
/**
* 网站标识的常量键名
*/
String WEB_SITE_CODE = "website";
/**
* 存储设置标识的常量键名
*/
String STORAGE_SETTING_CODE = "storage";
/**
* 系统邮件设置标识的常量键名
*/
String SYS_EMAIL_SETTING_CODE = "sys_email";
/**
* 顶级父导航id
*/
Integer TOP_PARENT_ID = 0;
}