package com.qianwen.smartman.modules.smis.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.qianwen.core.mp.base.BaseEntity;
|
import com.qianwen.core.tenant.mp.TenantEntity;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
/**
|
* 采集模板
|
*/
|
@TableName("collect_template")
|
public class CollectTemplate extends BaseEntity {
|
private static final long serialVersionUID = 1;
|
@ApiModelProperty("模板名称")
|
private String name;
|
|
@ApiModelProperty("模板类型")
|
private Integer type;
|
|
@ApiModelProperty("点位配置(json数组)")
|
private String dpConfig;
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public String getDpConfig() {
|
return dpConfig;
|
}
|
|
public void setDpConfig(String dpConfig) {
|
this.dpConfig = dpConfig;
|
}
|
|
|
}
|