using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities;
///
/// 齐套分拣明细表
///
[SugarTable("wms_setsorting_d")]
public partial class WmsSetsortingD : BaseEntity
{
public WmsSetsortingD()
{
id = SnowflakeIdHelper.NextId();
}
///
/// 所属组织ID
///
public string org_id { get; set; } = string.Empty;
///
/// 出库单ID
///
public string bill_id { get; set; } = string.Empty;
///
/// 物品ID
///
public string material_id { get; set; } = string.Empty;
///
/// 物品代码
///
public string material_code { get; set; } = string.Empty;
///
/// 单位ID
///
public string unit_id { get; set; } = string.Empty;
///
/// 单位代码
///
public string unit_code { get; set; } = string.Empty;
///
/// 批次
///
public string? code_batch { get; set; }
///
/// 出库需求数量
///
public decimal pr_qty { get; set; }
///
/// 实际出库数量
///
public decimal qty { get; set; }
///
/// 发料仓库
///
public string warehouse_id { get; set; } = string.Empty;
///
/// 备注
///
public string? remark { get; set; }
///
/// 扩展字段
///
public string? extras { get; set; }
///
/// 时间戳
///
public string time_stamp { get; set; } = string.Empty;
///
/// 创建用户
///
public string create_id { get; set; } = string.Empty;
///
/// 创建时间
///
public DateTime create_time { get; set; } = DateTime.Now;
///
/// 修改用户
///
public string? modify_id { get; set; }
///
/// 修改时间
///
public DateTime? modify_time { get; set; }
///
/// 明细状态
///
public string line_status { get; set; }
}