120 lines
3.2 KiB
C#
120 lines
3.2 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using JNPF.Common.Security;
|
|
using SqlSugar;
|
|
|
|
namespace Tnb.EquipMgr.Entities
|
|
{
|
|
///<summary>
|
|
///库位资料
|
|
///</summary>
|
|
[SugarTable("tool_location")]
|
|
public partial class ToolLocation
|
|
{
|
|
public ToolLocation(){
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:编号
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true)]
|
|
public string id {get;set;} = SnowflakeIdHelper.NextId();
|
|
|
|
/// <summary>
|
|
/// Desc:所属组织
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? org_id {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:库位代码(库位编号唯一)
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string location_code {get;set;} = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Desc:货架ID
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string rack_id {get;set;} = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Desc:区域ID
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string region_id {get;set;} = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Desc:仓库ID
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string wh_id {get;set;} = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Desc:层数
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public int layers {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:位置序号
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public int seq {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:时间戳
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? timestamp {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:创建用户
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? create_id {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:创建时间
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public DateTime? create_time {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:修改用户
|
|
/// 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;}
|
|
|
|
}
|
|
}
|