package com.qianwen.mdc.collect.entity.mgr;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.qianwen.core.mp.base.BaseEntity;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
/**
|
* 工位采集数据点
|
*/
|
@TableName("workstation_datapoints")
|
public class WorkstationDatapoints extends BaseEntity {
|
private static final long serialVersionUID = 1;
|
|
@ApiModelProperty("模板类型")
|
private Integer type;
|
|
@ApiModelProperty("点位配置(json数组)")
|
private String dpConfig;
|
|
/**
|
* 工位id
|
*/
|
private long workstationId;
|
|
/**
|
* IOT平台appId
|
*/
|
private String appId;
|
|
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;
|
}
|
|
public long getWorkstationId() {
|
return workstationId;
|
}
|
|
public void setWorkstationId(long workstationId) {
|
this.workstationId = workstationId;
|
}
|
|
public String getAppId() {
|
return appId;
|
}
|
|
public void setAppId(String appId) {
|
this.appId = appId;
|
}
|
|
|
}
|