xiaoyong931011
2021-03-11 819f0f2f11936ca80903d545db7cbf5631dcdc5b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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;
    }
    
}