1、新增字典表的查询 2、修改source_system的查询到查询字典表,防止初始没有数据
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
package com.realtime.protection.configuration.entity.dict;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import jakarta.validation.constraints.NotNull;
|
||||
import lombok.Data;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
@Data
|
||||
public class SysDictData {
|
||||
@JsonProperty("dict_label")
|
||||
@Schema(description = "字典标签")
|
||||
private String dictLabel;
|
||||
|
||||
@JsonProperty("dict_value")
|
||||
@Schema(description = "字典值")
|
||||
private String dictValue;
|
||||
|
||||
@JsonProperty("dict_type")
|
||||
@Schema(description = "字典类型")
|
||||
private String dictType;
|
||||
|
||||
@JsonProperty("dict_remark")
|
||||
@Schema(description = "字典备注")
|
||||
private String dictRemark;
|
||||
}
|
||||
Reference in New Issue
Block a user