package com.hdl.photovoltaic.enums; /** * 调试模式(常规调试,简易调试) */ public @interface DebugType { /** * 常规调试 */ String NORMAL = "NORMAL"; /** * 简易调试 */ String SIMPLE = "SIMPLE"; }