package com.hdl.photovoltaic.enums; /** * 电站的调试状态(全部,调试中,调试完成,已交付,授权调试) */ public @interface DebugStatus { /** * 全部 */ String All = "";//全部 /** * 调试中 */ String Debugging = "Debugging";//调试中 /** * 调试完成 */ String WAIT_DELIVERED = "WAIT_DELIVERED";//调试完成 /** * 已交付 */ String Delivered = "Delivered";//已交付 /** * 授权调试 */ String SECONDARY_DEBUGGIN = "SECONDARY_DEBUGGIN";//授权调试 }