dengzedong
9 天以前 f20e755c36d40d3474b6866b4f1b006cb128ef75
提交 | 用户 | 时间
cf2287 1 package com.iailab.module.model.mpk.entity;
2
3 import com.baomidou.mybatisplus.annotation.TableId;
4 import com.baomidou.mybatisplus.annotation.TableName;
5 import lombok.Data;
6
7 import java.io.Serializable;
8
9 /**
10  * @author PanZhibao
11  * @Description
12  * @createTime 2024年11月05日
13  */
14 @Data
15 @TableName("t_mpk_pack")
16 public class PackEntity implements Serializable {
17     private static final long serialVersionUID = 1L;
18
19     /**
20      * id
21      */
22     @TableId
23     private String id;
24
25     /**
26      * 包名称
27      */
28     private String packName;
29
30     /**
31      * 包描述
32      */
33     private String packDesc;
34
35     /**
36      * 模型路径
37      */
38     private String modelPath;
39
40     /**
41      * 排序
42      */
43     private Integer sort;
44 }