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 javax.validation.constraints.NotBlank;
|
import java.io.Serializable;
|
|
/**
|
* @author PanZhibao
|
* @date 2021年07月19日 15:03
|
*/
|
@Data
|
@TableName("T_ST_SCHEDULE_MODEL")
|
public class StScheduleModelEntity implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@TableId(value = "id",type = IdType.INPUT)
|
private String id;
|
|
|
/**
|
* 模型名称
|
*/
|
@NotBlank(message="模型名称不能为空")
|
private String modelname;
|
|
|
/**
|
* 调度ID
|
*/
|
private String scheduleid;
|
|
/**
|
* 对象ID
|
*/
|
private String objectid;
|
|
/**
|
* 类名
|
*/
|
private String classname;
|
|
/**
|
* 方法名
|
*/
|
private String methodname;
|
|
/**
|
* 模型路径
|
*/
|
private String modelpath;
|
|
/**
|
* 端口长度
|
*/
|
private Integer portlength;
|
|
/**
|
* 模型状态
|
*/
|
private Integer modelstatus;
|
}
|