| | |
| | | package com.gkhy.system.domain.vo.response; |
| | | |
| | | public class SysExpertSearchRep { |
| | | 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; |
| | | } |