Jay
2024-11-12 3d9106399d9a2b9c8ba7d2dea621f54fd71d2ca7
提交 | 用户 | 时间
0255ea 1 package com.iailab.module.model.mpk.entity;
D 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  * @description: 参数选项关联表
11  * @author: dzd
12  * @date: 2024/9/13 15:49
13  **/
14 @Data
15 @TableName("t_mpk_setting_select")
16 public class SettingSelectEntity implements Serializable {
17
18     /**
19      * id
20      */
21     @TableId
22     private String id;
23
24     /**
25      * '参数id'
26      */
27     private String settingId;
28
29     /**
30      * key
31      */
32     private String selectKey;
33
34     /**
35      * 名称
36      */
37     private String name;
8b3ee3 38
39     /**
40      * 排序
41      */
42     private Integer sort;
0255ea 43 }