using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Business.Domain { /// /// 发货明细表 /// [Comment("发货明细表")] public class ASNBOLShipperDetail { /// /// 主键 /// [Comment("主键")] [Key] public int RecID { get; set; } /// /// 发货次数 /// [Precision(23, 10)] [Comment("发货次数")] public decimal? RealQty { get; set; } /// /// 发货数量 /// [Precision(23, 10)] [Comment("发货数量")] public decimal? QtyToShip { get; set; } /// /// 单价 /// [Precision(23, 10)] [Comment("单价")] public decimal? Price { get; set; } /// /// 项次,分组用的,不同物料编码 /// [Precision(23, 10)] [Comment("项次")] public int Line { get; set; } // RealQty,QtyToShip,Price,Line,ShipDate,ContainerItem /// /// 域名 /// [Comment("域名")] public string Domain { get; set; } /// /// 租户ID /// [Comment("租户ID")] public long? tenant_id { get; set; } /// /// 发货日期 /// [Comment("发货日期")] public DateTime? ShipDate { get; set; } /// /// 物料编码 /// [Comment("物料编码")] public string ContainerItem { get; set; } /// /// OrdNbr /// [Comment("OrdNbr")] public string OrdNbr { get; set; } /// /// 行号 /// [Comment("行号")] public string? Typed { get; set; } /// /// 类型 /// [Comment("类型")] public string? shtype { get; set; } /// /// 销售渠道(国内国外T1、T2、国科、海王等待定) /// [Comment("销售渠道")] public string? CustRef { get; set; } /// /// 是否有效:1-有效;0-无效 /// [Comment("是否有效")] public bool IsActive { get; set; } /// /// 主表ID /// [Comment("主表ID")] public long ASNBOLShipperRecID { get; set; } /// /// 创建时间 /// [Comment("创建时间")] public DateTime? CreateTime { get; set; } /// /// 创建人 /// [Comment("创建人")] public string CreateUser { get; set; } /// /// 创建时间 /// [Comment("修改时间")] public DateTime? UpdateTime { get; set; } /// /// 修改人 /// [Comment("修改人")] public string UpdateUser { get; set; } } }