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_shipnotice : BaseEntity { /// /// 发运通知单主键id /// [Key] public long shipnotice_id { get; set; } /// /// 发运通知单号 /// [StringLength(80)] [Required] public string shipnotice_no { get; set; } /// /// 发货计划id /// [Required] public long shipplan_id { get; set; } /// /// 发货计划号 /// [StringLength(80)] public string shipplan_no { get; set; } /// /// 发运时间 /// [Required] public DateTime shipnotice_date { get; set; } /// /// 状态 /// [Required] public int state { get; set; } /// /// 发运地址 /// [StringLength(200)] public string address { get; set; } } }