95 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C#
		
	
	
	
		
		
			
		
	
	
			95 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C#
		
	
	
	
|  | using System; | |||
|  | using System.Collections.Generic; | |||
|  | using System.Linq; | |||
|  | using System.Text; | |||
|  | 
 | |||
|  | namespace Model | |||
|  | { | |||
|  |     /// <summary> | |||
|  |     /// 现场考勤 -缺勤 | |||
|  |     /// </summary> | |||
|  |     public class AbsenceDutyItem | |||
|  |     { | |||
|  |         /// <summary> | |||
|  |         /// ID | |||
|  |         /// </summary> | |||
|  |         public string ProjectId | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |         /// <summary> | |||
|  |         /// 单位id | |||
|  |         /// </summary> | |||
|  |         public string UnitId | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |         /// <summary> | |||
|  |         /// 单位名称 | |||
|  |         /// </summary> | |||
|  |         public string UnitName | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |         /// <summary> | |||
|  |         /// 施工队id | |||
|  |         /// </summary> | |||
|  |         public string TeamGroupId | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |         /// <summary> | |||
|  |         /// 施工队名称 | |||
|  |         /// </summary> | |||
|  |         public string TeamGroupName | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |         /// <summary> | |||
|  |         /// 岗位ID | |||
|  |         /// </summary> | |||
|  |         public string WorkPostId | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         }         | |||
|  |         /// <summary> | |||
|  |         /// 岗位名称 | |||
|  |         /// </summary> | |||
|  |         public string WorkPostName | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |         /// <summary> | |||
|  |         /// 人员ID | |||
|  |         /// </summary> | |||
|  |         public string PersonId | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |         /// <summary> | |||
|  |         /// 人员姓名 | |||
|  |         /// </summary> | |||
|  |         public string PersonName | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |         /// <summary> | |||
|  |         /// 身份证号码 | |||
|  |         /// </summary> | |||
|  |         public string IdentityCard | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |     } | |||
|  | } |