//using SqlSugar;
|
//using System;
|
//using System.Collections.Generic;
|
//using System.Linq;
|
//using System.Text;
|
//using System.Threading.Tasks;
|
//using WIDESEA_Core.DB.Models;
|
|
//namespace WIDESEA_Model.Models
|
//{
|
// [SugarTable("Dt_EdiOut", "出库单")]
|
// public class Dt_EdiOut:BaseEntity
|
// {
|
// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
// public int Id { get; set; }
|
|
// [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "客户CODE")]
|
// public string CustomerCode { get; set; } = string.Empty;
|
|
// [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "物料类型CODE")]
|
// public string MaterialCode { get; set; } = string.Empty;
|
|
// [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "外部出库单号(唯一标识)")]
|
// public string ExternalOrderNo { get; set; } = string.Empty;
|
|
// [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "出库单类型(10一般交易,20盘点,30盘亏)")]
|
// public string OutOrderType { get; set; } = string.Empty;
|
|
// [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "优先级")]
|
// public int Priority { get; set; }
|
|
// [SugarColumn(ColumnDescription = "是否取消(1是0否)")]
|
// public int Is_cancel { get; set; }
|
// }
|
//}
|