houzhongjian
2024-11-07 a874b928e16320839315b9abcdf2cece1229a424
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.iailab.module.model.mpk.entity;
 
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @description: 参数选项关联表
 * @author: dzd
 * @date: 2024/9/13 15:49
 **/
@Data
@TableName("t_mpk_setting_select")
public class SettingSelectEntity implements Serializable {
 
    /**
     * id
     */
    @TableId
    private String id;
 
    /**
     * '参数id'
     */
    private String settingId;
 
    /**
     * key
     */
    private String selectKey;
 
    /**
     * 名称
     */
    private String name;
 
    /**
     * 排序
     */
    private Integer sort;
}