提交 | 用户 | 时间
|
7fd198
|
1 |
package com.iailab.module.model.mcs.pre.entity; |
潘 |
2 |
|
|
3 |
import com.baomidou.mybatisplus.annotation.IdType; |
|
4 |
import com.baomidou.mybatisplus.annotation.TableId; |
|
5 |
import com.baomidou.mybatisplus.annotation.TableName; |
|
6 |
import lombok.Data; |
|
7 |
|
|
8 |
import javax.validation.constraints.NotBlank; |
|
9 |
import javax.validation.constraints.NotNull; |
|
10 |
import java.io.Serializable; |
|
11 |
|
|
12 |
/** |
|
13 |
* @author PanZhibao |
|
14 |
* @date 2021年04月25日 17:47 |
|
15 |
*/ |
|
16 |
@Data |
|
17 |
@TableName("T_MM_MODEL_PARAM") |
|
18 |
public class MmModelParamEntity implements Serializable { |
|
19 |
private static final long serialVersionUID = 1L; |
|
20 |
|
|
21 |
/** |
|
22 |
* 主键 |
|
23 |
*/ |
|
24 |
@TableId(value = "id",type = IdType.INPUT) |
|
25 |
private String id; |
|
26 |
|
|
27 |
/** |
|
28 |
* 模型ID |
|
29 |
*/ |
|
30 |
@NotBlank(message="模型ID不能为空") |
|
31 |
private String modelid; |
|
32 |
|
|
33 |
/** |
|
34 |
* 参数名称 |
|
35 |
*/ |
|
36 |
@NotBlank(message="参数名称不能为空") |
|
37 |
private String modelparamname; |
|
38 |
|
|
39 |
/** |
|
40 |
* 参数ID |
|
41 |
*/ |
|
42 |
@NotBlank(message="参数ID不能为空") |
|
43 |
private String modelparamid; |
|
44 |
|
|
45 |
/** |
|
46 |
* 序号 |
|
47 |
*/ |
|
48 |
@NotBlank(message="序号不能为空") |
|
49 |
private Integer modelparamorder; |
|
50 |
|
|
51 |
/** |
|
52 |
* 端口 |
|
53 |
*/ |
|
54 |
@NotBlank(message="端口不能为空") |
|
55 |
private Integer modelparamportorder; |
|
56 |
|
|
57 |
/** |
|
58 |
* 参数长度 |
|
59 |
*/ |
|
60 |
@NotNull(message="参数不能为空") |
|
61 |
private Integer datalength; |
|
62 |
|
|
63 |
/** |
|
64 |
* 参数类型 |
|
65 |
*/ |
|
66 |
@NotBlank(message="参数类型不能为空") |
|
67 |
private String modelparamtype; |
|
68 |
} |