package com.iailab.module.model.mcs.pre.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;
|
import java.math.BigDecimal;
|
|
/**
|
* @author PanZhibao
|
* @date 2021年04月25日 16:23
|
*/
|
@Data
|
@TableName("T_MM_ITEM_OUTPUT")
|
public class MmItemOutputEntity implements Serializable {
|
/**
|
* 主键
|
*/
|
@TableId(value = "id",type = IdType.INPUT)
|
private String id;
|
|
/**
|
* 预测项ID
|
*/
|
private String itemid;
|
|
/**
|
* 数据点ID
|
*/
|
@NotBlank(message="数据点ID不能为空")
|
private String pointid;
|
|
/**
|
* 存放表ID
|
*/
|
@NotBlank(message="存放表ID不能为空")
|
private String resulttableid;
|
|
/**
|
* 结果
|
*/
|
@NotBlank(message="结果不能为空")
|
private String resultstr;
|
|
/**
|
* 结果类型
|
*/
|
private Integer resultType;
|
|
/**
|
* 结果索引
|
*/
|
private Integer resultIndex;
|
|
/**
|
* 数据点名称
|
*/
|
@NotBlank(message="数据点名称不能为空")
|
private String tagname;
|
|
/**
|
* 排序(默认值1)
|
*/
|
private BigDecimal outputorder;
|
}
|