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; }