Sign in

周伟鹏 / cnlive_shenhe · Files

GitLab

  • Back to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • cnlive_shenhe
  • ..
  • utils
  • CommonConst.java
  • update
    3172f463
    周伟鹏 authored
    2018-11-30 14:37:11 +0800  
    Browse Code »
CommonConst.java 425 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
package com.cnlive.shenhe.utils;

/**
 * @Auther: 周伟鹏
 * @Date: 2018/11/30 14:20
 * @Description:
 */
public class CommonConst {
    /**
     * 审核状态:待审核
     */
    public static Integer AUDIT_INTT = 0;
    /**
     * 审核状态:审核通过
     */
    public static Integer AUDIT_SUCCESS = 1;
    /**
     * 审核状态:审核拒绝
     */
    public static Integer AUDIT_REFUSE = 2;


   

}