|  |  |  | 
|---|
|  |  |  | import com.dy.common.po.BaseEntity; | 
|---|
|  |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
|---|
|  |  |  | import io.swagger.v3.oas.annotations.media.Schema; | 
|---|
|  |  |  | import jakarta.validation.constraints.Max; | 
|---|
|  |  |  | import jakarta.validation.constraints.Min; | 
|---|
|  |  |  | import lombok.Data; | 
|---|
|  |  |  | import org.springframework.format.annotation.DateTimeFormat; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | @Schema(title = "控制器视图对象") | 
|---|
|  |  |  | public class VoController implements BaseEntity { | 
|---|
|  |  |  | private static final long serialVersionUID = 1L; | 
|---|
|  |  |  | private static final long serialVersionUID = 202401241704003L; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(title = "ID") | 
|---|
|  |  |  | @ExcelProperty("ID") | 
|---|
|  |  |  | @ColumnWidth(10) | 
|---|
|  |  |  | private Long id; | 
|---|
|  |  |  | private String id; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(title = "控制器地址") | 
|---|
|  |  |  | @ExcelProperty("控制器地址") | 
|---|
|  |  |  | 
|---|
|  |  |  | @ExcelProperty("发现日期时间") | 
|---|
|  |  |  | @ColumnWidth(30) | 
|---|
|  |  |  | private Date findDt; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Schema(title = "在线状态") | 
|---|
|  |  |  | @ExcelProperty("在线状态") | 
|---|
|  |  |  | @ColumnWidth(6) | 
|---|
|  |  |  | private String onlineState; | 
|---|
|  |  |  | } | 
|---|