package com.iailab.module.mcs.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* 模型下发信息表
|
*
|
* @author PanZhibao
|
* @Description
|
* @createTime 2023年08月02日 13:26:00
|
*/
|
@Data
|
@TableName("t_st_model_out")
|
public class StModelOutEntity implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId(type = IdType.ASSIGN_UUID)
|
private String id;
|
|
/**
|
* 模型ID
|
*/
|
private String modelId;
|
|
/**
|
* 输出key
|
*/
|
private String resultKey;
|
|
/**
|
* 是否下发
|
*/
|
private String isWrite;
|
|
/**
|
* 下发的点位
|
*/
|
private String pointNo;
|
|
/**
|
* 排序
|
*/
|
private Integer sort;
|
|
/**
|
* 无扰切换点位
|
*/
|
private String disturbancePointNo;
|
}
|