using Business.EntityFrameworkCore; using Business.Models; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Globalization; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Bussiness.Model.Tech { /// /// 发货计划详情清单 /// public class wms_shipplanlist : BaseEntity { /// /// 发货详情主键id /// [Key] public long shipplanlist_id { get; set; } /// /// 发货计划id /// [Required] public long shipplan_id { get; set; } /// /// 发货计划时间 /// public DateTime shipplan_date { get; set; } /// /// 销售单id /// [Required] public long shipplanl_soid { get; set; } /// /// 销售单号 /// [StringLength(80)] public string shipplanl_sono { get; set; } /// /// 行号 /// public int shipplanl_soeid { get; set; } /// /// 物料id /// public long icitem_id { get; set; } /// /// 物料编码 /// [StringLength(80)] public string item_number { get; set; } /// /// 物料名称 /// [StringLength(255)] public string item_name { get; set; } /// /// 发货数量 /// [DecimalPrecision(20, 10)] public decimal shipplanl_iqty { get; set; } /// /// 发货日期 /// [DecimalPrecision(20, 10)] public DateTime shipplanl_sdate { get; set; } /// /// 客户id /// public long shipnotice_custid { get; set; } /// /// 客户编号 /// [StringLength(80)] public string shipnotice_custno { get; set; } /// /// 客户名称 /// [StringLength(255)] public string shipnotice_custname { get; set; } /// /// 状态 /// [Required] public int state { get; set; } } }