Files
Arbitrate-Backend/ruoyi-common/src/main/java/com/ruoyi/common/constant/CaseApplicationConstants.java
T

24 lines
500 B
Java
Raw Normal View History

2023-09-11 14:29:15 +08:00
package com.ruoyi.common.constant;
/**
* 立案申请案件状态
*
*/
public class CaseApplicationConstants {
/** 立案申请 */
public static final int CASE_APPLICATION = 0;
/** 待缴费 */
public static final int PENDING_PAYMENT = 1;
/** 待缴费确认 */
public static final int PENDING_PAYMENT_CONFIRM = 2;
/** 待确认证据 */
public static final int EVIDENCE_CONFREMED = 3;
/** 待组庭 */
public static final int PENDING_TRIAL = 4;
}