WMS相关文件添加,仅添加文件,可启动但未测试
This commit is contained in:
72
ZR.Model/MES/wms/WmsDelivery.cs
Normal file
72
ZR.Model/MES/wms/WmsDelivery.cs
Normal file
@@ -0,0 +1,72 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using SqlSugar;
|
||||
namespace ZR.Model.MES.wms
|
||||
{
|
||||
/// <summary>
|
||||
/// 发货记录
|
||||
///</summary>
|
||||
[SugarTable("wms_delivery")]
|
||||
public class WmsDelivery
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
|
||||
public long Id { get; set; }
|
||||
/// <summary>
|
||||
/// 出库单主表Id
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "shipment_order_id")]
|
||||
public long? ShipmentOrderId { get; set; }
|
||||
/// <summary>
|
||||
/// 承运商Id
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "carrier_id")]
|
||||
public long? CarrierId { get; set; }
|
||||
/// <summary>
|
||||
/// 发货日期
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "delivery_date")]
|
||||
public DateTime? DeliveryDate { get; set; }
|
||||
/// <summary>
|
||||
/// 快递单号
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "tracking_no")]
|
||||
public string TrackingNo { get; set; }
|
||||
/// <summary>
|
||||
/// 备注
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "remark")]
|
||||
public string Remark { get; set; }
|
||||
/// <summary>
|
||||
/// 删除标识
|
||||
/// 默认值: 0
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "del_flag")]
|
||||
public byte DelFlag { get; set; }
|
||||
/// <summary>
|
||||
/// 创建人
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "create_by")]
|
||||
public long? CreateBy { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "create_time")]
|
||||
public DateTime? CreateTime { get; set; }
|
||||
/// <summary>
|
||||
/// 修改人
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "update_by")]
|
||||
public long? UpdateBy { get; set; }
|
||||
/// <summary>
|
||||
/// 修改时间
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "update_time")]
|
||||
public DateTime? UpdateTime { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user