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 ; } }