|  | @@ -23,8 +23,8 @@ public class MaterialProgressVO {
 | 
	
		
			
				|  |  |      @ApiModelProperty("WBS进度")
 | 
	
		
			
				|  |  |      private List<TreeMaterialProgress> treeMaterialProgressList = new ArrayList<>();
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -    public void setProcessMaterialList(String title, Integer amount, Long successAmount, Integer isHide) {
 | 
	
		
			
				|  |  | -        this.processMaterialList.add(new ProcessMaterial(title, amount, successAmount,isHide));
 | 
	
		
			
				|  |  | +    public void setProcessMaterialList(String title, Integer amount, Long successAmount, Integer isHide,Integer hideType) {
 | 
	
		
			
				|  |  | +        this.processMaterialList.add(new ProcessMaterial(title, amount, successAmount,isHide,hideType));
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      public void setProcessMaterialStatusList(String title, Integer submitAmount, Integer awaitAmount, Integer approvalAmount) {
 | 
	
	
		
			
				|  | @@ -198,8 +198,10 @@ public class MaterialProgressVO {
 | 
	
		
			
				|  |  |          private BigDecimal ratio;
 | 
	
		
			
				|  |  |          @ApiModelProperty("是否隐藏 0显示1隐藏")
 | 
	
		
			
				|  |  |          private Integer isHide;
 | 
	
		
			
				|  |  | +        @ApiModelProperty("1开工报告 2工序资料 3评定资料 4中间交工")
 | 
	
		
			
				|  |  | +        private Integer hideType;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -        public ProcessMaterial(String title, Integer amount, Long successAmount,Integer isHide) {
 | 
	
		
			
				|  |  | +        public ProcessMaterial(String title, Integer amount, Long successAmount,Integer isHide,Integer hideType) {
 | 
	
		
			
				|  |  |              this.title = title;
 | 
	
		
			
				|  |  |              this.amount = amount;
 | 
	
		
			
				|  |  |              this.successAmount = successAmount;
 | 
	
	
		
			
				|  | @@ -210,6 +212,7 @@ public class MaterialProgressVO {
 | 
	
		
			
				|  |  |                  this.ratio = new BigDecimal("0");
 | 
	
		
			
				|  |  |              }
 | 
	
		
			
				|  |  |              this.isHide = isHide;
 | 
	
		
			
				|  |  | +            this.hideType = hideType;
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      }
 |