This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.glxp.api.req.auth;
import com.glxp.api.util.page.ListPageRequest;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
@ApiModel("数据字典请求类")
public class SysDictDataRequest extends ListPageRequest {
@ApiModelProperty(value = "字典类型")
private String dictType;
@ApiModelProperty(value = "状态(0正常 1停用)")
private String status;
@ApiModelProperty(value = "字典标签")
private String dictLabel;
@ApiModelProperty(value = "字典键值")
private String dictValue;
}