using System.ComponentModel.DataAnnotations; namespace JSMachine.WMS.WebHost.Models { public class OrderInfo { /// /// 订单编号 /// public string OrderNum { get; set; } /// /// 产品编号(该订单属于哪一种产品) /// public string ProductionNum { get; set; } /// /// 客户名称 /// public string CustomerName { get; set; } /// /// 计划数量 /// public int PlanningNum { get; set; } /// /// 每捆数 /// public int PerBunchNum { get; set; } /// /// 箱型 /// public string BoxType { get; set; } /// /// 楞型 /// public string Flute { get; set; } /// /// 纸厚 /// public decimal PaperThickness { get; set; } /// /// 修边值 /// public decimal TrimValue { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 是否开槽 /// public bool IsSlotted { get; set; } /// /// 是否模切 /// public bool IsMoldCut { get; set; } /// /// 粘箱机是否折叠粘箱 /// public bool IsFoldingGlueBox { get; set; } /// /// 横一长(mm) /// public decimal HorizontalFirstWidth { get; set; } /// /// 横二长(mm) /// public decimal HorizontalSecondWidth { get; set; } /// /// 横三长(mm) /// public decimal HorizontalThirdWidth { get; set; } /// /// 横四长(mm) /// public decimal HorizontalFourWidth { get; set; } /// /// 纵一高(mm) /// public decimal VerticalFirstHeight { get; set; } /// /// 纵二高(mm) /// public decimal VerticalSecondHeight { get; set; } /// /// 纵三高(mm) /// public decimal VerticalThridHeight { get; set; } /// /// 舌口宽(mm) /// public decimal TongueWidth { get; set; } /// /// 纸总长 /// public decimal PaperLength { get; set; } /// /// 纸总宽 /// public decimal PaperWidth { get; set; } /// /// 订单时间(导入等非本系统添加的订单时间以信息源时间为准,本系统添加的订单则取提交订单的时间为准) /// public DateTime? OrderTime { get; set; } /// /// 创建时间 /// public DateTime? CreationTime { get; set; } /// /// /最近一次得修改时间 /// public DateTime? LastModifiedTime { get; set; } /// /// 拆刀提示(旧单使用保存的拆刀提示,新单直接从PLC读取拆刀提示) /// //public string RemoveKnifeInfo { get; set; } /// /// 是否已生产 /// public bool IsFinished { get; set; } /// /// 印版补偿值 /// public decimal PrintPlateOffset { get; set; } /// /// 模板补偿值 /// public decimal MoldCutPlateOffset { get; set; } } }