using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace WebAPI.Models { /// /// 工序派工单视图模型 /// public class Sc_ProcessSendWorkViewModel { /// /// /// public Int64? hmainid { get; set; } /// /// /// public DateTime? 日期 { get; set; } /// /// /// public string 单据号 { get; set; } /// /// /// public Int64? HDeptID { get; set; } /// /// /// public string 部门代码 { get; set; } /// /// /// public string 部门 { get; set; } /// /// /// public Int64? HMaterID { get; set; } /// /// /// public string 物料代码 { get; set; } /// /// /// public string 物料名称 { get; set; } /// /// /// public string 规格型号 { get; set; } /// /// /// public Int64? HUnitID { get; set; } /// /// /// public string 计量单位代码 { get; set; } /// /// /// public string 计量单位 { get; set; } /// /// /// public Int64? HprocID { get; set; } /// /// /// public string 工序代码 { get; set; } /// /// /// public string 工序 { get; set; } /// /// /// public Int64? HGroupID { get; set; } /// /// /// public string 班组代码 { get; set; } /// /// /// public string 班组名称 { get; set; } /// /// /// public Int64? HSourceID { get; set; } /// /// /// public string 资源代码 { get; set; } /// /// /// public string 生产资源 { get; set; } /// /// /// public Int64? HWorkerID { get; set; } /// /// /// public string 职员代码 { get; set; } /// /// /// public string 职员 { get; set; } /// /// /// public Int64? hsubid { get; set; } /// /// /// public decimal? 数量 { get; set; } /// /// /// public DateTime? 计划开工日期 { get; set; } /// /// /// public DateTime? 计划完工日期 { get; set; } /// /// /// public decimal? 计划工时 { get; set; } /// /// /// public string 表体备注 { get; set; } /// /// /// public Int64? HICMOInterID { get; set; } /// /// /// public string 生产任务单号 { get; set; } /// /// /// public Int64? HSeOrderInterID { get; set; } /// /// /// public string 销售订单号 { 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 Int64? 源单主内码 { get; set; } /// /// /// public Int64? 源单子内码 { get; set; } /// /// /// public string 源单单号 { get; set; } /// /// /// public string 源单类型 { get; set; } /// /// /// public string 行关闭人 { get; set; } /// /// /// public string HBillType { get; set; } /// /// /// public Int64? HQtyDecimal { get; set; } /// /// /// public Int64? HPriceDecimal { get; set; } } }