新增运营商不对应的错误代码

This commit is contained in:
panshuling321 2022-09-20 14:15:03 +08:00
parent 2f40d39a01
commit 8e0901d848

View File

@ -121,9 +121,9 @@ public class Constants
public static final String INVALID_TERMINAL = "0C"; public static final String INVALID_TERMINAL = "0C";
/** /**
* 无效运营商桩的运营商和卡不对应 * 该账户不能在此桩上充电
*/ */
public static final String INVALID_OPERATOR = "06"; public static final String LIMIT_CHARGING = "06";
/** /**
* 无效卡 * 无效卡
@ -215,4 +215,7 @@ public class Constants
// 桩停用 // 桩停用
public static final String UNUSE_TERMINAL = "05"; public static final String UNUSE_TERMINAL = "05";
// 无效运营商桩的运营商和卡不对应
public static final String INVALID_OPERATOR = "23";
} }