heheng
2024-11-20 2d27b24029adafdbfc5703b38a519d65beda6a68
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.gkhy.system.domain.vo.response;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @author admin
 */
@Data
@ApiModel(value = "专家查询信息审核返回", description = "专家查询信息审核返回")
public class SysExpertSearchRep  implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty("专家证书")
    private String expertCertificate;
 
    @ApiModelProperty("审批状态(0申请提交,1待审核,2审批通过,3审批不通过,4专家库)")
    private Integer state;
}