增加签收单号
This commit is contained in:
@@ -4,6 +4,11 @@ namespace Tnb.ProductionMgr.Entities.Dto
|
|||||||
{
|
{
|
||||||
public string id { get; set; }
|
public string id { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 签收单号
|
||||||
|
/// </summary>
|
||||||
|
public string code { get; set; } = string.Empty;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 工位id
|
/// 工位id
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
@@ -14,6 +14,12 @@ public partial class PrdMaterialReceiptH : BaseEntity<string>
|
|||||||
{
|
{
|
||||||
id = SnowflakeIdHelper.NextId();
|
id = SnowflakeIdHelper.NextId();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 签收单号
|
||||||
|
/// </summary>
|
||||||
|
public string code { get; set; } = string.Empty;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 工位id
|
/// 工位id
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
@@ -78,6 +78,7 @@ namespace Tnb.ProductionMgr
|
|||||||
|
|
||||||
PrdMaterialReceiptH prdMaterialReceiptH = new PrdMaterialReceiptH()
|
PrdMaterialReceiptH prdMaterialReceiptH = new PrdMaterialReceiptH()
|
||||||
{
|
{
|
||||||
|
code = input.code,
|
||||||
station_id = input.station_id,
|
station_id = input.station_id,
|
||||||
mo_task_id = input.mo_task_id,
|
mo_task_id = input.mo_task_id,
|
||||||
process_id = input.process_id,
|
process_id = input.process_id,
|
||||||
|
|||||||
Reference in New Issue
Block a user