package com.newfiber.led.business.entity; import com.alibaba.fastjson.annotation.JSONField; import lombok.Data; /** * @author : zhangjun * @Project_name:newfiber-hydrology * @date:2019/7/17 16:46 * @email:505724729@qq.com * @description:{todo} * @Exception: throw {todo} */ @Data public class LedState { private Long id; /**Led设备号*/ private String idsDev; /**Led设备名称*/ private String idsName; /**创建时间*/ @JSONField(format = "yyyy-MM-dd HH:mm:ss") private String createTime; /**开始时间*/ private String startTime; /**结束时间*/ private String endTime; private int page; private int rows; }