Jay
2024-11-12 3d9106399d9a2b9c8ba7d2dea621f54fd71d2ca7
提交 | 用户 | 时间
449017 1 package com.iailab.module.model.mpk.entity;
D 2
3 import com.baomidou.mybatisplus.annotation.FieldFill;
4 import com.baomidou.mybatisplus.annotation.TableField;
5 import com.baomidou.mybatisplus.annotation.TableId;
6 import com.baomidou.mybatisplus.annotation.TableName;
7 import lombok.Data;
8
9 import java.io.Serializable;
10 import java.util.Date;
11
12 /**
13  * @description: MPK模型方法
14  * @author: dzd
15  * @date: 2024/9/9 10:52
16  **/
17 @Data
18 @TableName("t_mpk_model_method")
19 public class ModelMethodEntity implements Serializable {
20
21     /**
22      * id
23      */
24     @TableId
25     private String id;
26
27     /**
28      * 模型文件id
29      */
30     private String mpkFileId;
31
32     /**
33      * 模型方法名
34      */
35     private String methodName;
36
37     /**
38      * 输入个数
39      */
40     private Integer dataLength;
41
42     /**
43      * 是否有model(0:否,1:是)
44      */
45     private Integer model;
8b3ee3 46
0255ea 47     /**
D 48      * 结果key
49      */
50     private String resultKey;
8b3ee3 51
52     /**
53      * 排序
54      */
55     private Integer sort;
449017 56 }