This commit is contained in:
2024-11-28 15:10:09 +08:00
commit 901691aaea
90 changed files with 4919 additions and 0 deletions

View File

@ -0,0 +1,21 @@
package com.ycwl.basic.constant;
/**
* @date 2022年11月21日 9:59
* 消费管理收费机是否绑定应用场所状态类
*/
public class ConsumeIsBindApplicationSiteConstant {
/**
* 未绑定
*/
public static final int UNBOUND = 0;
/**
* 已绑定
*/
public static final int BOUND = 1;
private ConsumeIsBindApplicationSiteConstant() {
}
}