package com.iailab.module.model.mcs.sche.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;
|
import java.util.Date;
|
|
/**
|
* @author Jay
|
|
*/
|
@Data
|
@TableName("t_st_suggest_operation_record")
|
public class StSuggestOperationRecordEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@TableId(value = "id",type = IdType.INPUT)
|
private String id;
|
|
/**
|
* 标题
|
*/
|
private String title;
|
|
/**
|
* 内容
|
*/
|
private String content;
|
|
/**
|
* 方案ID
|
*/
|
private String schemeId;
|
|
/**
|
* 模型ID
|
*/
|
private String modelId;
|
|
/**
|
* 模型名称
|
*/
|
private String modelName;
|
|
/**
|
* 调度时间
|
*/
|
private Date scheduleTime;
|
|
/**
|
* 结果code
|
*/
|
private String resultCode;
|
|
/**
|
* 结果数据
|
*/
|
private String resultData;
|
|
/**
|
* 操作(已采纳,取消采纳,已忽略等)
|
*/
|
private String operate;
|
|
/**
|
* 原因
|
*/
|
private String reason;
|
|
/**
|
* 处理人ID
|
*/
|
private String handlerId;
|
|
/**
|
* 处理人
|
*/
|
private String handler;
|
|
/**
|
* 处理时间
|
*/
|
private Date handleTime;
|
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
}
|