|
|
|
package com.zhonglai.luhui.device.domain;
|
|
|
|
|
|
|
|
import com.ruoyi.common.annotation.PublicSQLConfig;
|
|
|
|
import com.ruoyi.common.annotation.Excel;
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
|
|
import com.ruoyi.common.annotation.PublicSQLConfig;
|
|
|
|
import com.ruoyi.common.tool.BaseEntity;
|
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 产品解析插件包对象 iot_protocol_class
|
|
|
|
*
|
|
|
|
* @author 钟来
|
|
|
|
* @date 2024-06-13
|
|
|
|
*/
|
|
|
|
@ApiModel("产品解析插件包")
|
|
|
|
public class IotProtocolClass implements Serializable {
|
|
|
|
public class IotProtocolClass extends BaseEntity
|
|
|
|
{
|
|
|
|
@PublicSQLConfig(isSelect=false)
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@ApiModelProperty("主键id")
|
|
|
|
private Integer id;
|
|
|
|
|
|
|
|
@ApiModelProperty("创建时间")
|
|
|
|
private String create_time;
|
|
|
|
/** 主键 */
|
|
|
|
@ApiModelProperty("主键")
|
|
|
|
private Integer id;
|
|
|
|
|
|
|
|
/** 类型(1解析协议,2清洗协议,3数据库同步服务) */
|
|
|
|
@ApiModelProperty("类型(1解析协议,2清洗协议,3数据库同步服务)")
|
|
|
|
private Integer type;
|
|
|
|
|
|
|
|
/** 名称 */
|
|
|
|
@ApiModelProperty("名称")
|
|
|
|
private String name;
|
|
|
|
|
|
|
|
/** 模型举例 */
|
|
|
|
@ApiModelProperty("模型举例")
|
|
|
|
private String case_model;
|
|
|
|
|
|
|
|
/** 类名 */
|
|
|
|
@ApiModelProperty("类名")
|
|
|
|
private String classname;
|
|
|
|
|
|
|
|
public Integer getId() {
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
/** 创建时间 */
|
|
|
|
@ApiModelProperty("创建时间")
|
|
|
|
private String create_time;
|
|
|
|
|
|
|
|
public void setId(Integer id) {
|
|
|
|
public void setId(Integer id)
|
|
|
|
{
|
|
|
|
this.id = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getCreate_time() {
|
|
|
|
return create_time;
|
|
|
|
public Integer getId()
|
|
|
|
{
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCreate_time(String create_time) {
|
|
|
|
this.create_time = create_time;
|
|
|
|
public void setType(Integer type)
|
|
|
|
{
|
|
|
|
this.type = type;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Integer getType() {
|
|
|
|
public Integer getType()
|
|
|
|
{
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setType(Integer type) {
|
|
|
|
this.type = type;
|
|
|
|
public void setName(String name)
|
|
|
|
{
|
|
|
|
this.name = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getName() {
|
|
|
|
public String getName()
|
|
|
|
{
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setName(String name) {
|
|
|
|
this.name = name;
|
|
|
|
public void setCase_model(String case_model)
|
|
|
|
{
|
|
|
|
this.case_model = case_model;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getCase_model() {
|
|
|
|
public String getCase_model()
|
|
|
|
{
|
|
|
|
return case_model;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCase_model(String case_model) {
|
|
|
|
this.case_model = case_model;
|
|
|
|
public void setClassname(String classname)
|
|
|
|
{
|
|
|
|
this.classname = classname;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getClassname() {
|
|
|
|
public String getClassname()
|
|
|
|
{
|
|
|
|
return classname;
|
|
|
|
}
|
|
|
|
public void setCreate_time(String create_time)
|
|
|
|
{
|
|
|
|
this.create_time = create_time;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setClassname(String classname) {
|
|
|
|
this.classname = classname;
|
|
|
|
public String getCreate_time()
|
|
|
|
{
|
|
|
|
return create_time;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String toString() {
|
|
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
|
.append("id", getId())
|
|
|
|
.append("type", getType())
|
|
|
|
.append("name", getName())
|
|
|
|
.append("case_model", getCase_model())
|
|
|
|
.append("classname", getClassname())
|
|
|
|
.append("create_time", getCreate_time())
|
|
|
|
.toString();
|
|
|
|
}
|
|
|
|
} |
...
|
...
|
|