You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
}
|