package com.gxwebsoft.cms.param; import com.gxwebsoft.common.core.annotation.QueryField; import com.gxwebsoft.common.core.annotation.QueryType; import com.gxwebsoft.common.core.web.BaseParam; import com.fasterxml.jackson.annotation.JsonInclude; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; /** * 文档管理记录表查询参数 * * @author WebSoft * @since 2022-11-16 11:40:27 */ @Data @EqualsAndHashCode(callSuper = false) @JsonInclude(JsonInclude.Include.NON_NULL) @ApiModel(value = "DocsParam对象", description = "文档管理记录表查询参数") public class DocsParam extends BaseParam { private static final long serialVersionUID = 1L; @ApiModelProperty(value = "文档ID") @QueryField(type = QueryType.EQ) private Integer docsId; @ApiModelProperty(value = "文档标题") private String title; @ApiModelProperty(value = "上级目录") @QueryField(type = QueryType.EQ) private Integer parentId; @ApiModelProperty(value = "用户ID") @QueryField(type = QueryType.EQ) private Integer userId; @ApiModelProperty(value = "机构id") @QueryField(type = QueryType.EQ) private Integer organizationId; @ApiModelProperty(value = "所属门店ID") @QueryField(type = QueryType.EQ) private Integer shopId; @ApiModelProperty(value = "可见性(public,private,protected)") private String visibility; @ApiModelProperty(value = "排序(数字越小越靠前)") @QueryField(type = QueryType.EQ) private Integer sortNumber; @ApiModelProperty(value = "文档内容") private String content; @ApiModelProperty(value = "备注") private String comments; @ApiModelProperty(value = "状态, 0正常, 1冻结") @QueryField(type = QueryType.EQ) private Integer status; @ApiModelProperty(value = "是否删除, 0否, 1是") @QueryField(type = QueryType.EQ) private Integer deleted; }