31 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C#
		
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| using System.Threading.Tasks;
 | |
| 
 | |
| namespace Model.CQMS
 | |
| {
 | |
|     public class BreakdownProject
 | |
|     {
 | |
|         public string BreakdownProjectId { get; set; }
 | |
|         public string ProjectId { get; set; }
 | |
|         public string BreakdownCode { get; set; }
 | |
|         public string BreakdownName { get; set; }
 | |
|         public string DivisionProjectId { get; set; }
 | |
|         public string Basis { get; set; }
 | |
|         public string CheckPoints { get; set; }
 | |
|         public string RecordAndCode { get; set; }
 | |
|         public string Class { get; set; }
 | |
|         public string SortIndex { get; set; }
 | |
|         public string Remark { get; set; }
 | |
|         public string AttachUrl { get; set; }
 | |
|         public string IsAcceptance { get; set; }
 | |
|         public string FenBao { get; set; }
 | |
|         public string WuHuan { get; set; }
 | |
|         public string JianLi { get; set; }
 | |
|         public string YeZhu { get; set; }
 | |
|         public string IsSelected { get; set; }
 | |
|     }
 | |
| }
 |