refactor(property): 1
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
zcxlsm 2025-07-19 16:55:27 +08:00
parent 98fb035a97
commit 073e235179

View File

@ -86,13 +86,15 @@ public class TbMeterInfoVo implements Serializable {
/**
* 通信状态
*/
@ExcelProperty(value = "通信状态")
@ExcelProperty(value = "通信状态", converter = ExcelDictConvert.class)
@ExcelDictFormat(dictType = "sis_device_status")
private Long communicationState;
/**
* 运行状态
*/
@ExcelProperty(value = "运行状态")
@ExcelProperty(value = "运行状态", converter = ExcelDictConvert.class)
@ExcelDictFormat(dictType = "sis_device_status")
private Long runningState;
/**