1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  | package com.dy.pipIrrGlobal.util; 
 |    
 |  /** 
 |   * @Author: liurunyu 
 |   * @Date: 2025/6/9 11:31 
 |   * @Description 
 |   */ 
 |  public enum CameraTypeEnum { 
 |      YINGSHI((byte)1, "萤石"); 
 |    
 |      private Byte type ; //1萤石 2海康 
 |      private String name ;//萤石 海康 
 |    
 |      CameraTypeEnum(Byte type, String name){ 
 |          this.type = type ; 
 |          this.name = name ; 
 |      } 
 |      public Byte getType() { 
 |          return this.type ; 
 |      } 
 |      public String getName() { 
 |          return this.name ; 
 |      } 
 |  } 
 |  
  |