package com.matrix.system.fenxiao.dto; import com.matrix.core.pojo.PaginationDto; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; @ApiModel(value = "ShopSalesmanApplyDto", description = "查询参数") public class ShopSalesmanApplyDto extends PaginationDto { @ApiModelProperty(value ="审核状态") private Integer shenheState; @ApiModelProperty(hidden = true) private Long companyId; public Integer getShenheState() { return shenheState; } public void setShenheState(Integer shenheState) { this.shenheState = shenheState; } public Long getCompanyId() { return companyId; } public void setCompanyId(Long companyId) { this.companyId = companyId; } }