代码调整

This commit is contained in:
2023-04-07 09:17:47 +08:00
parent 9a7571a997
commit 50d2e2637a
2 changed files with 4 additions and 2 deletions

View File

@@ -8,9 +8,10 @@ package com.njcn.common.pojo.constant;
public interface BizParamConstant {
/**
* 前端查询时间类型 测试jenkins打包
* 前端查询时间类型
* 1年 2季度 3月份 4周 5日
*/
String s = "测试jenkins打包";
String STAT_BIZ_YEAR = "1";
String STAT_BIZ_QUARTER = "2";
String STAT_BIZ_MONTH = "3";

View File

@@ -6,8 +6,9 @@ package com.njcn.user.pojo.constant;
public interface ComponentState {
/**
* 状态 0-删除1-正常;默认正常 测试jenkins打包
* 状态 0-删除1-正常;默认正常
*/
String s = "测试jenkins打包";
int DELETE = 0;
int ENABLE = 1;