jiangping
2023-12-18 98e52a2d1a05276e11d2e5c99ec05e670228fbd6
server/dmvisit_service/src/main/java/com/doumee/core/haikang/model/HKConstants.java
@@ -103,6 +103,49 @@
        }
    }
    /**
     * 证件类型
     */
    public  enum CertificateType {
        SHENFENZHENG(111, "身份证"  ),
        HUZHAO(414, "护照"  ),
        HUKOUBEN(113, "户口簿"  ),
        JIASHIZHENG(335, "驾驶证"  ),
        GONGXUOZHENG(131, "工作证"  ),
        XUESHENGZHENG(133, "学生证"  ),
        QITA(990, "其他"  )
        ;
        // 成员变量
        private String name;
        private int key;
        // 构造方法
        CertificateType(int key, String name ) {
            this.name = name;
            this.key = key;
        }
        // get set 方法
        public String getName() {
            return name;
        }
        public void setName(String name) {
            this.name = name;
        }
        public int getKey() {
            return key;
        }
        public void setKey(int key) {
            this.key = key;
        }
    }
    public  enum ReturnCode {
        PARK_LINE_IN("0x00072001", "资源信息不存在"  )