立案申请功能

This commit is contained in:
qitz
2023-09-11 14:29:15 +08:00
parent fe4c2e3f20
commit 5662d2f2f5
10 changed files with 904 additions and 0 deletions
@@ -0,0 +1,23 @@
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;
}