refactor: 字典模块重构

This commit is contained in:
Ray.Hao
2025-03-24 07:24:32 +08:00
parent b080d11853
commit 60f94fdf7f
24 changed files with 264 additions and 277 deletions

View File

@@ -8,10 +8,10 @@ import lombok.EqualsAndHashCode;
@Data
@EqualsAndHashCode(callSuper = false)
@Schema(description ="字典数据分页查询对象")
public class DictDataPageQuery extends BasePageQuery {
@Schema(description ="字典分页查询对象")
public class DictItemPageQuery extends BasePageQuery {
@Schema(description="关键字(字典数据标签/值)")
@Schema(description="关键字(字典项值/字典项名称)")
private String keywords;
@Schema(description="字典编码")

View File

@@ -1,6 +1,5 @@
package com.youlai.boot.system.model.query;
import com.youlai.boot.common.base.BasePageQuery;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
@@ -8,13 +7,10 @@ import lombok.EqualsAndHashCode;
@Data
@EqualsAndHashCode(callSuper = false)
@Schema(description ="字典数据项分页查询对象")
@Schema(description ="字典分页查询对象")
public class DictPageQuery extends BasePageQuery {
@Schema(description="关键字(字典名称)")
private String keywords;
@Schema(description="字典编码")
private String typeCode;
}