127 lines
3.4 KiB
C#
127 lines
3.4 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using JNPF.Common.Security;
|
|
using SqlSugar;
|
|
|
|
namespace Tnb.WarehouseMgr.Entities
|
|
{
|
|
///<summary>
|
|
///空载具出库主表
|
|
///</summary>
|
|
[SugarTable("wms_empty_outstock_h")]
|
|
public partial class WmsEmptyOutstockH
|
|
{
|
|
public WmsEmptyOutstockH(){
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:主键
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true)]
|
|
public string id {get;set;} = SnowflakeIdHelper.NextId();
|
|
|
|
/// <summary>
|
|
/// Desc:租户ID
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? tenant_id {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:所属组织ID
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? org_id {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:单号
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string bill_code {get;set;} = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Desc:单据状态
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string status {get;set;} = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Desc:业务类型:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string biz_type {get;set;} = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Desc:库位ID
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string location_id {get;set;} = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Desc:载具规格
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string carrystd_id {get;set;} = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Desc:数量
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public int qty {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:创建用户
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string create_id {get;set;} = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Desc:创建时间
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public DateTime create_time {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:最后修改人员ID
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? modify_id {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:最后修改时间
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public DateTime? modify_time {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:扩展字段
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? extras {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:时间戳(用于并发控制)
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public DateTime? timestamp {get;set;}
|
|
|
|
}
|
|
}
|