智能仲裁后端服务

CaseApplicationConstants.java 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package com.ruoyi.common.constant;
  2. /**
  3. * 立案申请案件状态
  4. *
  5. */
  6. public class CaseApplicationConstants {
  7. /** 立案申请 */
  8. public static final int CASE_APPLICATION = 0;
  9. /** 待立案审查 */
  10. public static final int CASE_CHECK = 1;
  11. /** 待缴费 */
  12. public static final int PENDING_PAYMENT = 2;
  13. /** 待缴费确认 */
  14. public static final int PENDING_PAYMENT_CONFIRM = 3;
  15. /** 待案件质证 */
  16. public static final int CASE_CROSSEXAMI = 4;
  17. /** 待组庭 */
  18. public static final int PENDING_TRIAL = 26;
  19. /** 待组庭审核 */
  20. public static final int CONFIRMDED_PENDING_TRIAL_SUBMMIT = 5;
  21. /** 待组庭确定 */
  22. public static final int CONFIRMDED_PENDING_TRIAL = 6;
  23. /** 待审核仲裁方式 */
  24. public static final int CHECK_ARBITRATION_METHOD = 7;
  25. /** 待开庭审理 */
  26. public static final int PENDING_OPENCOURT_HEAR = 8;
  27. /** 待书面审理 */
  28. public static final int PENDING_WRIITEN_HEAR = 9;
  29. /** 待生成仲裁文书 */
  30. public static final int GENERATED_ARBITRATION = 10;
  31. /**待核验仲裁文书*/
  32. public static final int VERPRIF_ARBITRATION = 11;
  33. /**待审核仲裁文书*/
  34. public static final int CHECK_ARBITRATION = 12;
  35. /**待仲裁文书签名*/
  36. public static final int SIGN_ARBITRATION = 13;
  37. /** 待仲裁文书用印 */
  38. public static final int ARBITRATED_SEAL = 14;
  39. /** 待仲裁文书送达 */
  40. public static final int ARBITRATION_DELIVERY = 15;
  41. /** 待案件归档*/
  42. public static final int CASE_FILING = 16;
  43. /** 已归档*/
  44. public static final int CASE_ARCHIVED = 17;
  45. }