using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities.Entity { [SugarTable("other_outstock_h")] public partial class OtherOutstockH : BaseEntity { public OtherOutstockH() { id = SnowflakeIdHelper.NextId(); } /// /// 创建用户 /// public string create_id { get; set; } = string.Empty; /// /// 创建时间 /// public DateTime create_time { get; set; } = DateTime.Now; /// /// 最后修改人员ID /// public string? modify_id { get; set; } /// /// 最后修改时间 /// public DateTime? modify_time { get; set; } /// /// 所属组织ID /// public string? org_id { get; set; } /// /// 出库类型 /// public string? outstock_type { get; set; } /// /// 部门 /// public string? department { get; set; } /// /// 业务员 /// public string? salesman { get; set; } /// /// 其他出库单号 /// public string? bill_code { get; set; } /// /// 下发状态 /// public string? issuance_status { get; set; } /// /// 出库仓库 /// public string? warehouse_code { get; set; } /// /// /// public string? source_id { get; set; } /// /// /// public string? source_bill_code { get; set; } /// /// /// public string? source_detail_id { get; set; } } }