using System;
|
using System.Linq;
|
using System.Text;
|
using SqlSugar;
|
|
namespace WMS.Entity.SysEntity
|
{
|
///<summary>
|
///条码管理表
|
///</summary>
|
[SugarTable("SysPallets")]
|
public class SysPallets:BaseEntity
|
{
|
/// <summary>
|
/// 托盘号 号码使用完成后从起始重新循环生成(使用中的跳过)
|
/// Default:
|
/// Nullable:False
|
/// </summary>
|
public string PalletNo {get;set;}
|
|
/// <summary>
|
/// 类行 0:托盘 1:中转箱(托盘上存放的容器/二级托盘) 功能控制是否开启中转箱
|
/// Default:
|
/// Nullable:True
|
/// </summary>
|
public string Type {get;set;}
|
|
/// <summary>
|
/// 状态 0:未使用 1:使用中
|
/// Default:
|
/// Nullable:True
|
/// </summary>
|
public string Status {get;set;}
|
|
/// <summary>
|
/// 上次使用时间
|
/// Default:
|
/// Nullable:True
|
/// </summary>
|
public DateTime? LastUse {get;set;}
|
|
[Navigate(NavigateType.OneToOne, nameof(CreateUser))]
|
public SysUserInfor CreateUserInfo { get; set; }
|
}
|
}
|