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.
udi-cpt-java/src/main/java/com/glxp/api/req/auth/SysDictDataRequest.java

25 lines
609 B
Java

This file contains ambiguous Unicode characters!

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;
}