|
|
@ -1,4 +1,5 @@
|
|
|
|
using DS.Module.Core.Data;
|
|
|
|
using DS.Module.Core.Data;
|
|
|
|
|
|
|
|
using SqlSugar;
|
|
|
|
using System;
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Linq;
|
|
|
@ -17,26 +18,32 @@ namespace DS.WMS.Core.Op.Entity
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// 业务id
|
|
|
|
/// 业务id
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "业务id")]
|
|
|
|
public long? BusinessId { get; set; }
|
|
|
|
public long? BusinessId { get; set; }
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// 状态
|
|
|
|
/// 状态
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "状态", Length = 100, IsNullable = true)]
|
|
|
|
public string Status { get; set; }
|
|
|
|
public string Status { get; set; }
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// 状态时间
|
|
|
|
/// 状态时间
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "状态时间", IsNullable = true)]
|
|
|
|
public DateTime? OpTime { get; set; }
|
|
|
|
public DateTime? OpTime { get; set; }
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// 类别
|
|
|
|
/// 类别
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "类别", Length = 100, IsNullable = true)]
|
|
|
|
public string Group { get; set; }
|
|
|
|
public string Group { get; set; }
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// 状态分类
|
|
|
|
/// 状态分类
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "状态分类", Length = 100, IsNullable = true)]
|
|
|
|
public string Type { get; set; }
|
|
|
|
public string Type { get; set; }
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// 提单号
|
|
|
|
/// 提单号
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
[SugarColumn(ColumnDescription = "提单号", Length = 100, IsNullable = true)]
|
|
|
|
public string MBLNO { get; set; }
|
|
|
|
public string MBLNO { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|