You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-wms-java/src/main/java/com/glxp/api/res/collect/IoCollectLedGroupResponse.java

93 lines
1.3 KiB
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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;
}