using System; 
 | 
using System.Collections.Generic; 
 | 
using System.Linq; 
 | 
using System.Web; 
 | 
  
 | 
namespace WebAPI.Models 
 | 
{ 
 | 
    public class Pay_WorkTimesBillSub 
 | 
    { 
 | 
        public long HInterID { get; set; } 
 | 
        public long HEntryID { get; set; } 
 | 
        public string HCloseMan { get; set; } 
 | 
        public DateTime HEntryCloseDate { get; set; } 
 | 
        public long HCloseType { get; set; } 
 | 
        public string HRemark { get; set; } 
 | 
        public long HSourceInterID { get; set; } 
 | 
        public long HSourceEntryID { get; set; } 
 | 
        public string HSourceBillNo { get; set; } 
 | 
        public string HSourceBillType { get; set; } 
 | 
        public decimal HRelationQty { get; set; } 
 | 
        public decimal HRelationMoney { get; set; } 
 | 
        public long HEmpID { get; set; }//        int     '职员 
 | 
        public decimal HEmpRate { get; set; }//    money    '职员系数 
 | 
        public decimal HPMTimes { get; set; } 
 | 
        public decimal HAMTimes { get; set; } 
 | 
        public decimal HBaseTimes { get; set; } 
 | 
        public decimal HBaseDays { get; set; } 
 | 
        public decimal HOverTimes { get; set; } 
 | 
        public decimal HOverDays { get; set; } 
 | 
        public decimal HLeaveTimes { get; set; } 
 | 
        public decimal HLeaveDays { get; set; } 
 | 
        public long HLateQty { get; set; } 
 | 
        public decimal HLateTimes { get; set; } 
 | 
        public long HEarlyQty { get; set; } 
 | 
        public decimal HEarlyTimes { get; set; } 
 | 
        public long HOutForEmpQty { get; set; } 
 | 
        public decimal HOutForEmpTimes { get; set; } 
 | 
        public long HOutForComQty { get; set; } 
 | 
        public decimal HOutForComTimes { get; set; } 
 | 
        public long HAbsentDays { get; set; } 
 | 
        public long HRestFlag { get; set; } 
 | 
        public long HSchClassID { get; set; } 
 | 
        public decimal HNeedTimes { get; set; } 
 | 
        public long HCTPrjID { get; set; } 
 | 
        public long HWorkTypeID { get; set; } 
 | 
        public decimal HPayMoney { get; set; } 
 | 
        public decimal HMoney { get; set; } 
 | 
      
 | 
    } 
 | 
} 
 |