package com.glxp.api.res.collect; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.util.Date; /** * @author : zhuzhu * @date : 2024/12/30 14:12 * @modyified By : */ @Data public class IoCollectLedGroupResponse { /** * 主键id */ private Long id; /** * 标签id */ private String mac; /** * led灯编号 */ private Integer ledNum; /** * 红灯 */ private Boolean red; /** * 橘灯 */ private Boolean orange; /** * 蓝色 */ private Boolean blue; /** * 绿色 */ private Boolean green; /** * 备注 */ private String remark; /** * */ private Date createTime; /** * */ private Date updateTime; /** * */ private String createUser; /** * */ private String updateUser; /** * 默认0 常亮,不自动灭。timeout>0,(timeout)秒后自动灭。 */ private Integer timeout; /** * 亮灯模式 0灭灯,1常亮 */ private Integer ledMode; private Long relId; private String nameCode; }