代码备份
parent
104c27539e
commit
76c4079d9d
@ -1,14 +1,20 @@
|
||||
package com.glxp.api.entity.system;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
@ApiModel(value = "分类代码实体")
|
||||
@Data
|
||||
public class ClassifyCodeEntity {
|
||||
|
||||
@ApiModelProperty(value = "主键")
|
||||
private Integer id;
|
||||
@ApiModelProperty(value = "编码")
|
||||
private String code;
|
||||
@ApiModelProperty(value = "名称")
|
||||
private String name;
|
||||
@ApiModelProperty(value = "级别")
|
||||
private String level;
|
||||
@ApiModelProperty(value = "器械类别")
|
||||
private String qxlb;
|
||||
|
||||
}
|
||||
|
@ -1,18 +1,24 @@
|
||||
package com.glxp.api.req.system;
|
||||
|
||||
import com.glxp.api.util.page.ListPageRequest;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
@ApiModel(value = "过滤分类编码请求")
|
||||
public class FilterClassifyCodeRequest extends ListPageRequest {
|
||||
|
||||
@ApiModelProperty(value = "密钥")
|
||||
private String key;
|
||||
@ApiModelProperty(value = "编码")
|
||||
private String code;
|
||||
@ApiModelProperty(value = "名称")
|
||||
private String name;
|
||||
|
||||
|
||||
@ApiModelProperty(value = "输入过滤器")
|
||||
private String inFilter;
|
||||
@ApiModelProperty(value = "输入过滤器列表")
|
||||
private List<String> inFilterList;
|
||||
}
|
||||
|
Loading…
Reference in New Issue