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_DeliveryOrder", "出库单")]
|
public class Dt_DeliveryOrder: BaseEntity
|
{
|
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
|
public int Id { get; set; }
|
|
[SugarColumn(ColumnName = "Out_no", IsNullable = true, Length = 50, ColumnDescription = "出库单号")]
|
public string Out_no{ get; set; }
|
|
[SugarColumn(ColumnName = "Out_type", IsNullable = true, Length = 3, ColumnDescription = "出库单类型")]
|
public string Out_type { get; set; }
|
|
[SugarColumn(ColumnName = "Client_no", IsNullable = true, Length = 3, ColumnDescription = "客户代码")]
|
public string Client_no { get; set; }
|
|
|
[SugarColumn(ColumnName = "Account_time", IsNullable = true, ColumnDescription = "出库记账时间")]
|
public DateTime Account_time { get; set; }
|
|
//是否需要下面的字段
|
//优先级 priority
|
//是否取消 Is_cancel
|
|
//优先级 priority
|
//[SugarColumn(ColumnName = "Priority", IsNullable = true, ColumnDescription = "优先级")]
|
//public int Priority { get; set; }
|
|
////是否取消 Iscancel
|
//[SugarColumn(ColumnName = "Iscancel", IsNullable = true, ColumnDescription = "是否取消")]
|
//public int Iscancel { get; set; }
|
|
}
|
}
|