using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities.Entity;
///
/// 盘点单
///
[SugarTable("wms_inventorycheck_h")]
public partial class WmsInventorycheckH : BaseEntity
{
public WmsInventorycheckH()
{
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? org_id { get; set; }
///
/// 备注
///
public string? remark { get; set; }
///
/// 盘点单号
///
public string? bill_code { get; set; }
///
/// 仓库id
///
public string? warehouse_id { get; set; }
///
/// 仓库编码
///
public string? warehouse_code { get; set; }
///
/// 仓库名称
///
public string? warehouse_name { get; set; }
///
/// 部门编码
///
public string? dept_code { get; set; }
///
/// 业务员编码
///
public string? biller { get; set; }
///
/// erp_pk
///
public string? erp_pk { get; set; }
///
/// erp_bill_code
///
public string? erp_bill_code { get; set; }
///
/// 盘点日期
///
public string? check_date { get; set; }
///
/// 盘点任务完成状态:0未盘点,1盘点中,2已盘点
///
public string? check_status { get; set; }
///
/// 盘点完成时间
///
public DateTime? check_time { get; set; }
}