package com.iailab.module.model.mcs.sche.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.iailab.framework.mybatis.core.dataobject.BaseDO;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @description: 调度模型下发配置
|
* @author: dyk
|
* @date: 2024/12/30 17:21
|
**/
|
@Data
|
@TableName("t_st_schedule_model_out")
|
public class StScheduleModelOutEntity implements Serializable {
|
|
/**
|
* id
|
*/
|
@TableId
|
private String id;
|
|
/**
|
* 模型id
|
*/
|
private String modelId;
|
|
/**
|
* key
|
*/
|
private String resultKey;
|
|
/**
|
* 数据类型
|
*/
|
private String resultType;
|
|
/**
|
* 角标1
|
*/
|
private Integer resultPort;
|
|
/**
|
* 角标2
|
*/
|
private Integer resultIndex;
|
|
/**
|
* 是否下发
|
*/
|
private Integer isWrite;
|
|
/**
|
* 下发的点位
|
*/
|
private String pointNo;
|
|
/**
|
* 排序
|
*/
|
private Integer sort;
|
|
/**
|
* 无扰切换点位
|
*/
|
private String disturbancePointNo;
|
}
|