package com.qianwen.smartman.modules.smis.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.qianwen.core.mp.base.BaseEntity;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
/**
|
* 采集设备类型,定义点位字段
|
*/
|
@TableName("collect_device_type")
|
public class CollectDeviceType extends BaseEntity {
|
private static final long serialVersionUID = 1;
|
@ApiModelProperty("类型名称")
|
private String name;
|
|
/**
|
* 每个字段信息格式:{"prop":"dpName","isRequired":true,"label":"数据点名称","describe":"数据点名称,同一应用下的数据点名称不允许重复。"}
|
*/
|
@ApiModelProperty("字段信息,json数组")
|
private String dpHead;
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getDpHead() {
|
return dpHead;
|
}
|
|
public void setDpHead(String dpHead) {
|
this.dpHead = dpHead;
|
}
|
|
|
}
|