24 lines
500 B
Java
24 lines
500 B
Java
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;
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|