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

6 months ago
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;
/**
* 01
*/
private Integer ledMode;
private Long relId;
private String nameCode;
}