潘志宝
2024-09-18 ca0e59e087685df4bd3dc117101ddbf85c53eed0
提交 | 用户 | 时间
0255ea 1 package com.iailab.module.model.mpk.dto;
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 public class SettingSelectDTO implements Serializable {
16
17     /**
18      * id
19      */
20     private String id;
21
22     /**
23      * '参数id'
24      */
25     private String settingId;
26
27     /**
28      * key
29      */
30     private String selectKey;
31
32     /**
33      * 名称
34      */
35     private String name;
36 }