Files
tnb.server/WarehouseMgr/Tnb.WarehouseMgr.Entities/Entity/WmsPurchaseReturnC.cs

78 lines
1.6 KiB
C#

using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities.Entity;
/// <summary>
/// 采购退货单载具表
/// </summary>
[SugarTable("wms_purchase_return_c")]
public partial class WmsPurchaseReturnC : BaseEntity<string>
{
public WmsPurchaseReturnC()
{
id = SnowflakeIdHelper.NextId();
}
/// <summary>
/// 采购退货单id
/// </summary>
public string? bill_id { get; set; }
/// <summary>
/// 载具ID
/// </summary>
public string? carry_id { get; set; }
/// <summary>
/// 载具编号
/// </summary>
public string? carry_code { get; set; }
/// <summary>
/// 创建用户
/// </summary>
public string? create_id { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? create_time { get; set; }
/// <summary>
/// 终点库位id
/// </summary>
public string? endlocation_id { get; set; }
/// <summary>
/// 终点库位编码
/// </summary>
public string? endlocation_code { get; set; }
/// <summary>
/// 起点库位id
/// </summary>
public string? startlocation_id { get; set; }
/// <summary>
/// 起点库位编码
/// </summary>
public string? startlocation_code { get; set; }
/// <summary>
/// 采购退货单明细id
/// </summary>
public string? mat_bill_id { get; set; }
/// <summary>
/// 载具数量
/// </summary>
public decimal? qty { get; set; }
/// <summary>
/// 签收数量
/// </summary>
public decimal? sign_qty { get; set; }
}