using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities;
///
/// 库存报表条码表
///
[SugarTable("wms_stock_report_code")]
public partial class WmsStockReportCode : BaseEntity
{
public WmsStockReportCode()
{
id = SnowflakeIdHelper.NextId();
}
///
/// 主表ID
///
//public string? report_id { get; set; }
/////
///// 载具ID
/////
//public string? carry_id { get; set; }
/////
///// 载具编号
/////
//public string? carry_code { get; set; }
///
/// 物料ID
///
public string? material_id { get; set; }
///
/// 物料编号
///
public string? material_code { get; set; }
///
/// 条码编号
///
public string? barcode { get; set; }
///
/// 批次
///
public string? code_batch { get; set; }
///
/// 条码数量
///
public decimal? codeqty { get; set; }
///
/// 单位ID
///
public string? unit_id { 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; }
///
/// 时间戳
///
public DateTime? time_stamp { get; set; }
///
/// 物料名称
///
public string? material_name { get; set; }
///
/// 规格型号
///
public string? material_specification { get; set; }
///
/// 箱号
///
public string? container_no { get; set; }
///
/// 供应商编码
///
public string? supplier_code { get; set; }
///
/// 供应商名称
///
public string? supplier_name { get; set; }
///
/// 仓库ID
///
public string? warehouse_id { get; set; }
///
/// 仓库编码
///
public string? warehouse_code { get; set; }
///
/// 仓库名称
///
public string? warehouse_name { get; set; }
///
/// 区域编码
///
public string? region_code { get; set; }
///
/// 区域名称
///
public string? region_name { get; set; }
}