潘志宝
2024-09-05 7fd198b8ebe97cd06b10f96b9179caebe679783c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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 tagname;
 
    /**
     * 排序(默认值1)
     */
    private BigDecimal outputorder;
}