| | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | |
| | | import javafx.util.converter.LocalDateStringConverter; |
| | | |
| | | import com.sandu.ximon.dao.utils.LocalDateStringConverter; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | // @ExcelProperty(value = "创建时间",converter = LocalDateStringConverter.class) |
| | | @ExcelProperty(value = "创建时间",converter = LocalDateStringConverter.class) |
| | | private LocalDateTime createTime; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | @ExcelProperty("更新时间") |
| | | @ExcelProperty(value = "更新时间",converter = LocalDateStringConverter.class) |
| | | private LocalDateTime updateTime; |
| | | |
| | | @TableField(exist = false) |