using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities.Entity;
///
/// 收货质检记录
///
[SugarTable("wms_purchase_qcrecord")]
public partial class WmsPurchaseQcrecord : BaseEntity
{
public WmsPurchaseQcrecord()
{
id = SnowflakeIdHelper.NextId();
}
///
/// 创建用户
///
public string? create_id { get; set; }
///
/// 创建时间
///
public DateTime? create_time { get; set; }
///
/// 修改用户
///
public string? modify_id { get; set; }
///
/// 修改时间
///
public DateTime? modify_time { get; set; }
///
/// 来源单据
///
public string? type { get; set; }
///
/// 来源单号
///
public string? ori_bill_code { get; set; }
///
/// 来源明细id
///
public string? ori_detail_id { get; set; }
///
/// 仓库
///
public string? warehouse_id { get; set; }
///
/// 物料id
///
public string? material_id { get; set; }
///
/// 物料编码
///
public string? material_code { get; set; }
///
/// 物料名称
///
public string? material_name { get; set; }
///
/// 物料型号
///
public string? material_spec { get; set; }
///
/// 采购数量
///
public decimal? purchase_qty { get; set; }
///
/// 已到货数量
///
public decimal? purchase_prqty { get; set; }
///
/// 本次到货数量
///
public decimal? purchase_arriveqty { get; set; }
///
/// 质检结论
///
public string? result { get; set; }
///
/// 单位
///
public string? unit_id { get; set; }
///
/// 批次
///
public string? batchno { get; set; }
///
/// 质检人
///
public string? checker { get; set; }
///
/// 质检时间
///
public DateTime? check_time { get; set; }
///
/// 质检时间
///
[SugarColumn(IsIgnore = true)]
public string? check_timestr { get; set; }
///
///
///
[SugarColumn(IsIgnore = true)]
public string? container_no { get; set; }
}