package com.glxp.api.vo.dev; import com.glxp.api.entity.dev.DeviceInfoEntity; import lombok.Data; @Data public class DeviceInfoVo extends DeviceInfoEntity { Integer count; String deptName; String statusName; public String getStatusName() { if (super.getStatus() != null) { return super.getStatus().getDesc(); } return statusName; } }