Files
tnb.server/WarehouseMgr/Tnb.WarehouseMgr.Entities/Entity/WmsTransferInstockH.cs

80 lines
1.8 KiB
C#
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities.Entity;
/// <summary>
/// 成品调拨入库主表
/// </summary>
[SugarTable("wms_transfer_instock_h")]
public partial class WmsTransferInstockH : BaseEntity<string>
{
public WmsTransferInstockH()
{
id = SnowflakeIdHelper.NextId();
}
    /// <summary>
    /// 创建用户
    /// </summary>
    public string? create_id { get; set; }
    /// <summary>
    /// 创建时间
    /// </summary>
    public DateTime? create_time { get; set; }
    /// <summary>
    /// 修改用户
    /// </summary>
    public string? modify_id { get; set; }
    /// <summary>
    /// 修改时间
    /// </summary>
    public DateTime? modify_time { get; set; }
    /// <summary>
    /// 所属组织
    /// </summary>
    public string? org_id { get; set; }
    /// <summary>
    /// 流程任务Id
    /// </summary>
    public string? f_flowtaskid { get; set; }
    /// <summary>
    /// 流程引擎Id
    /// </summary>
    public string? f_flowid { get; set; }
    /// <summary>
    /// 审核员
    /// </summary>
    public string? auditor_id { get; set; }
    /// <summary>
    /// 审核状态
    /// </summary>
    public int? audit_status { get; set; }
    /// <summary>
    /// 入库单号
    /// </summary>
    public string? bill_code { get; set; }
    /// <summary>
    /// 入库单创建日期
    /// </summary>
    public DateTime? bill_date { get; set; }
    /// <summary>
    /// 单据状态
    /// </summary>
    public string? status { get; set; }
}