| package com.doumee.dao.system.vo; | 
|   | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
|   | 
| @Data | 
| @ApiModel("企业报名项目列表") | 
| public class CompanyDeclaresVo { | 
|   | 
|     private Integer companyId; | 
|   | 
|     private String companyName; | 
|   | 
|     private String address; | 
|   | 
|     private BigDecimal examScore; | 
|   | 
|     private Integer projectId; | 
|   | 
|     private String projectName; | 
|   | 
|     private Integer serviceCompanyId; | 
|   | 
|     private String serviceCompanyName; | 
|   | 
|   | 
|     private BigDecimal expertScore; | 
|   | 
|     private Integer DeclaresExpertStatus; | 
|   | 
| } |