外包装入库申请

This commit is contained in:
2023-11-09 10:58:15 +08:00
parent 68efc42e31
commit 746e7f425d
12 changed files with 586 additions and 10 deletions

View File

@@ -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;
}