using System; 
 | 
using System.Collections.Generic; 
 | 
using System.Linq; 
 | 
using System.Web; 
 | 
  
 | 
namespace WebAPI.Models 
 | 
{ 
 | 
    public class WW_EntrustWorkOrderViewModel 
 | 
    { 
 | 
        
 | 
        public int hmainid { get; set; } 
 | 
        public DateTime? 日期 { get; set; } 
 | 
        public string 单据号 { get; set; } 
 | 
        public int HDeptID { get; set; } 
 | 
        public string 部门 { get; set; } 
 | 
        public int HMaterID { get; set; } 
 | 
        public string 物料代码 { get; set; } 
 | 
        public string 物料名称 { get; set; } 
 | 
  
 | 
        public string 规格型号 { get; set; } 
 | 
        public string 表头备注 { get; set; } 
 | 
        public int hsubid { get; set; } 
 | 
        public int HEmpID { get; set; } 
 | 
        public string 职员 { get; set; } 
 | 
        public string 工序 { get; set; } 
 | 
        public int 单价 { get; set; } 
 | 
        public int 数量 { get; set; } 
 | 
        public string 表体备注 { get; set; } 
 | 
        public string 制单人 { get; set; } 
 | 
        public DateTime? 制单日期 { get; set; } 
 | 
        public string 审核人 { get; set; } 
 | 
        public DateTime? 审核日期 { get; set; } 
 | 
        public string 修改人 { get; set; } 
 | 
        public DateTime? 修改日期 { get; set; } 
 | 
        public string 关闭人 { get; set; } 
 | 
        public DateTime? 关闭日期 { get; set; } 
 | 
  
 | 
        public string 作废人 { get; set; } 
 | 
        public DateTime? 作废日期 { get; set; } 
 | 
        public int 源单主内码 { get; set; } 
 | 
        public int 源单子内码 { get; set; } 
 | 
        public string 源单单号 { get; set; } 
 | 
        public string 源单类型 { get; set; } 
 | 
        public string 行关闭人 { get; set; } 
 | 
        public string HBillType { get; set; } 
 | 
        public string HBillSubType { get; set; } 
 | 
  
 | 
  
 | 
  
 | 
    } 
 | 
} 
 |