2022-01-07 11:04:20 +08:00
|
|
|
package com.xjs.consts;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @author xiejs
|
2022-02-17 08:45:42 +08:00
|
|
|
* @desc api预警处理常量
|
|
|
|
|
* @create 2022-01-07
|
2022-01-07 11:04:20 +08:00
|
|
|
*/
|
|
|
|
|
public class ApiWarnHandleConst {
|
|
|
|
|
//已处理
|
|
|
|
|
public static final Integer YES= 1;
|
|
|
|
|
//未处理
|
|
|
|
|
public static final Integer NO= 2;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|