using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace ZR.Model.MES.wms { /// /// 出货单(物料+客户) /// [SugarTable("wm_out_order")] public class WmOutOrder { /// /// 主键G /// [SugarColumn(ColumnName="id" ,IsPrimaryKey = true )] public string Id { get; set; } /// /// 出货单号(雪花算法) /// [SugarColumn(ColumnName="shipment_num" )] public string ShipmentNum { get; set; } /// /// 客户id /// [SugarColumn(ColumnName="custom_id" )] public string CustomId { get; set; } /// /// 客户代码 /// [SugarColumn(ColumnName="custom_no" )] public string CustomNo { get; set; } /// /// 客户名称 /// [SugarColumn(ColumnName="custom_name" )] public string CustomName { get; set; } /// /// 客户地址 /// [SugarColumn(ColumnName="custom_address" )] public string CustomAddress { get; set; } /// /// 物料号(零件号) /// [SugarColumn(ColumnName="partnumber" )] public string Partnumber { get; set; } /// /// 单位 /// [SugarColumn(ColumnName="unit" )] public string Unit { get; set; } /// /// 产品描述(产品名称) /// [SugarColumn(ColumnName="product_name" )] public string ProductName { get; set; } /// /// 产品颜色 /// [SugarColumn(ColumnName="color" )] public string Color { get; set; } /// /// 规格(左右脚) /// [SugarColumn(ColumnName="specification" )] public string Specification { get; set; } /// /// 显示描述(产品描述+颜色+规格) /// [SugarColumn(ColumnName="description" )] public string Description { get; set; } /// /// 版本号 /// [SugarColumn(ColumnName="version" )] public string Version { get; set; } /// /// 备注 /// [SugarColumn(ColumnName="remarks" )] public string Remarks { get; set; } /// /// 状态(0-不可见 1-可见) /// [SugarColumn(ColumnName="status" )] public int? Status { get; set; } /// /// 年 /// [SugarColumn(ColumnName="year" )] public int? Year { get; set; } /// /// 周 /// [SugarColumn(ColumnName="week" )] public int? Week { get; set; } /// /// 日 /// [SugarColumn(ColumnName="date" )] public int? Date { get; set; } /// /// 要货数量 /// [SugarColumn(ColumnName="number" )] public int? Number { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName="CREATED_BY" )] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName="CREATED_TIME" )] public DateTime? CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName="UPDATED_BY" )] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName="UPDATED_TIME" )] public DateTime? UpdatedTime { get; set; } } }