生产入库接口

This commit is contained in:
2024-05-28 09:56:27 +08:00
parent 6674d10880
commit 450ea471b7
12 changed files with 549 additions and 76 deletions

View File

@@ -0,0 +1,57 @@
using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities.Entity;
/// <summary>
/// 生产入库子表
/// </summary>
[SugarTable("wms_prd_instock_d")]
public partial class WmsPrdInstockD : BaseEntity<string>
{
public WmsPrdInstockD()
{
id = SnowflakeIdHelper.NextId();
}
/// <summary>
/// 创建用户
/// </summary>
public string? create_id { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? create_time { get; set; }
/// <summary>
/// 生产任务单号
/// </summary>
public string? task_bill_code { get; set; }
/// <summary>
/// 入库仓库
/// </summary>
public string? warehouse_id { get; set; }
/// <summary>
/// 起始库位
/// </summary>
public string? startlocation_id { get; set; }
/// <summary>
/// 载具
/// </summary>
public string? carry_id { get; set; }
/// <summary>
/// 主表ID
/// </summary>
public string? prd_instock_id { get; set; }
/// <summary>
/// 状态
/// </summary>
public string? status { get; set; }
}