using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities.Entity;
///
/// 原材料调拨出库表子表
///
[SugarTable("wms_rawmat_transferoutstock_d")]
public partial class WmsRawmatTransferoutstockD : BaseEntity
{
public WmsRawmatTransferoutstockD()
{
id = SnowflakeIdHelper.NextId();
}
///
/// 主表id
///
public string? bill_id { get; set; }
///
/// 物料id
///
public string? matcode_id { get; set; }
///
/// 物料编号
///
public string? matcode { get; set; }
///
/// 物料描述
///
public string? matspecification { get; set; }
///
/// 单位
///
public string? unit { get; set; }
///
/// 单位ID
///
public string? unit_id { get; set; }
///
/// 出库数量
///
public decimal? qty { get; set; }
///
/// 实出数量
///
public decimal? actual_qty { get; set; }
///
/// 批次
///
public string? code_batch { get; set; }
///
/// 备注
///
public string? remark { get; set; }
///
/// 扩展字段
///
public string? extras { get; set; }
///
/// 创建用户
///
public string? create_id { get; set; }
///
/// 创建时间
///
public DateTime? create_time { get; set; }
///
/// 修改用户
///
public string? modify_id { get; set; }
///
/// 修改时间
///
public DateTime? modify_time { get; set; }
///
/// wms出库仓库编码
///
public string? warehouse_code { get; set; }
///
/// erp_line_pk
///
public string? erp_line_pk { get; set; }
///
/// erp行号
///
public string? lineno { get; set; }
///
/// erp出库仓库编码
///
public string erp_wh_type { get; set; }
///
/// erp入库仓库编码
///
public string? warehouse_instock_code { get; set; }
}