package com.fzzy.igds.constant; /** * @Description 控制柜操作模式 * @Author CZT * @Date 2025/11/26 09:25 */ public enum ControlModel { MODEL_01("01", "本地模式"), MODEL_02("02", "远程模式"); private String code; private String msg; ControlModel(String code, String msg) { this.code = code; this.msg = msg; } public String getCode() { return code; } public String getMsg() { return msg; } }