/*********************************************************************** * 功能描述:外发工艺打印模型 * 创建日期:2020年3月10日 14:33:24 * 创建作者:戴雁冰 ***********************************************************************/ using System; using System.Collections.Generic; namespace Pcb.Domain { /// /// 外发工艺打印模型 /// [Serializable] public class CraftSendPintInfo { /// /// 工艺名 /// public string CraftName { get; set; } /// /// 源公司 /// public string SrcCompany { get; set; } /// /// 目标公司 /// public string TgtCompany { get; set; } /// /// 发送时间 /// public DateTime SendTime { get; set; } /// /// 指定回厂时间 /// public DateTime ReturnTime { get; set; } /// /// 申请人 /// public string ApplyUserName { get; set; } /// /// 审核人 /// public string CheckUserName { get; set; } /// /// 订单列表 /// public List List { get; set; } } /// /// 外发工艺打印模型 /// [Serializable] public class CraftSendPintOrderInfo { /// /// 外发单号 /// public string OrderNo { get; set; } /// /// 高 /// public decimal Height { get; set; } /// /// 宽 /// public decimal Width { get; set; } /// /// 数量 /// public int Num { get; set; } /// /// 工艺要求 /// public string CraftRequire { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 单价 /// public decimal UnitMoney { get; set; } /// /// 总价 /// public decimal TotalMoney { get; set; } } }