外包装入库申请
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
using JNPF.Common.Contracts;
|
||||
using JNPF.Common.Security;
|
||||
using SqlSugar;
|
||||
|
||||
namespace Tnb.ProductionMgr.Entities;
|
||||
|
||||
/// <summary>
|
||||
/// 外包装空托盘码表
|
||||
/// </summary>
|
||||
[SugarTable("prd_out_packing")]
|
||||
public partial class PrdOutPacking : BaseEntity<string>
|
||||
{
|
||||
public PrdOutPacking()
|
||||
{
|
||||
id = SnowflakeIdHelper.NextId();
|
||||
}
|
||||
/// <summary>
|
||||
/// 托盘码
|
||||
/// </summary>
|
||||
public string code { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 工位id
|
||||
/// </summary>
|
||||
public string station_id { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 状态 0 未使用 1 已使用
|
||||
/// </summary>
|
||||
public string status { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
public DateTime create_time { get; set; } = DateTime.Now;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user