19 lines
496 B
Java
19 lines
496 B
Java
package com.youlai.system.pojo.query;
|
|
|
|
|
|
import com.youlai.system.common.base.BasePageQuery;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Data;
|
|
|
|
@Schema(description ="字典数据项分页查询对象")
|
|
@Data
|
|
public class DictItemPageQuery extends BasePageQuery {
|
|
|
|
@Schema(description="关键字(字典项名称)")
|
|
private String keywords;
|
|
|
|
@Schema(description="字典类型编码")
|
|
private String typeCode;
|
|
}
|