package org.jeecg.modules.mdc.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
import org.jeecg.common.system.base.entity.JeecgEntity;
|
|
import java.io.Serializable;
|
|
/**
|
* @author: LiuS
|
* @create: 2023-04-07 10:40
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@TableName("XYZAliases")
|
@ApiModel(value = "设备坐标采集")
|
public class XYZAliases extends JeecgEntity implements Serializable {
|
|
private static final long serialVersionUID = 7566411195366074673L;
|
|
/**
|
* 设备ID
|
*/
|
private String EquipmentID;
|
/**
|
* 字段ID
|
*/
|
private String FieldID;
|
/**
|
* 字段名称
|
*/
|
private String XYZFieldName;
|
/**
|
* 字段别名
|
*/
|
private String XYZFieldAliases;
|
/**
|
* 字段是否使用
|
*/
|
private String XYZIsUsed;
|
/**
|
*
|
*/
|
private String FieldFact;
|
|
@TableField(exist = false)
|
private String title;
|
@TableField(exist = false)
|
private String value;
|
|
}
|