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
| package com.nq.pojo;
|
|
| import com.baomidou.mybatisplus.annotation.IdType;
| import com.baomidou.mybatisplus.annotation.TableId;
| import com.fasterxml.jackson.annotation.JsonProperty;
| import lombok.Data;
|
| /**
| * 配置表
| * */
| @Data
| public class StockConfig {
|
| @TableId(type = IdType.AUTO,value = "id")
| private Integer id;
|
| @JsonProperty("cKey")
| private String cKey;
| @JsonProperty("cValue")
| private String cValue;
| @JsonProperty("cDesc")
| private String cDesc;
| @JsonProperty("cValueType")
| private String cValueType;
| }
|
|