| | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import lombok.Data; |
| | | import sun.plugin.viewer.context.IExplorerAppletContext; |
| | | |
| | | import java.util.Date; |
| | | |
| | |
| | | public class CKPowerDevSignalSetLog { |
| | | |
| | | private Long id; |
| | | /**设备类型[1-交流配电柜 2-直流配电柜 3-高频开关电源柜]*/ |
| | | private Integer devType; |
| | | /**被设置的参数*/ |
| | | private String param; |
| | | /**被设置的参数中文名*/ |
| | | private String paramCn; |
| | | /**参数的模拟值*/ |
| | | private Integer fake; |
| | | /**参数的状态*/ |
| | |
| | | private Integer pageNum; |
| | | @TableField(exist = false) |
| | | private Integer pageSize; |
| | | @TableField(exist = false) |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date startTime; |
| | | @TableField(exist = false) |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date endTime; |
| | | } |