using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IWareDataAccess.Entity.Order { public class OutOrderWebEntity { public int? id { get; set; } public string outOrderCode { get; set; } public string orderType { get; set; } public string orderStatus { get; set; } public DateTime? changeDate { get; set; } public DateTime? changeDateStart { get; set; } public DateTime? changeDateEnd { get; set; } public int? checkOutNum { get; set; } public int? totalOutNum { get; set; } public decimal? totalWeight { get; set; } public DateTime? updateTimeStart { get; set; } public DateTime? updateTimeEnd { get; set; } public int? isFinish { get; set; } public int? enable { get; set; } public DateTime? doTime { get; set; } public DateTime? doTimeStart { get; set; } public DateTime? doTimeEnd { get; set; } public string itemName { get; set; } public string itemDes { get; set; } public string itemType { get; set; } public string productionLineCode { get; set; } public string productionLineName { get; set; } public int? erpOrderId { get; set; } public string userName { get; set; } public int? tranLine { get; set; } public int? isErp { get; set; } public int? CarUserId { get; set; } public OutOrderWebEntity() { enable = 1; isErp = 0; } } }