using Business.EntityFrameworkCore; using Business.Models; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Globalization; using System.Linq; using System.Net; using System.Text; using System.Threading.Tasks; namespace Bussiness.Model.Tech { /// /// 发运通知单详情清单 /// public class wms_shipnoticelist : BaseEntity { /// /// 发运通知单详情id /// [Key] public long shipnoticelist_id { get; set; } /// /// 发运通知单id /// [StringLength(80)] public long shipnotice_id { get; set; } /// /// 发货详情id /// public long shipplanlist_id { get; set; } /// /// 销售单id /// public long shipplanl_soid { get; set; } /// /// 销售单号 /// [StringLength(80)] public string shipplanl_sono { get; set; } /// /// 销售单行号 /// public int shipplanl_soeid { 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; } /// /// 计划发货数量 /// [DecimalPrecision(20, 10)] public decimal shipplanl_iqty { get; set; } /// /// 实际发货数量 /// [DecimalPrecision(20, 10)] public decimal shipplanl_fqty { get; set; } /// /// 状态 /// [Required] public int state { get; set; } /// /// 发运地址 /// [StringLength(200)] public string address { get; set; } } }