生产管理,新增生产提报,自检报废接口

This commit is contained in:
DEVICE8\12494
2023-05-11 10:21:41 +08:00
parent 208e6258d3
commit 7bfa4eed8c
21 changed files with 1241 additions and 17 deletions

View File

@@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
{
public class PrdReportOutput
{
/// <summary>
/// 任务计划数
/// </summary>
public int? icmo_qty { get; set; }
/// <summary>
/// 已报工数量
/// </summary>
public int? reported_work_qty { get; set; }
/// <summary>
/// 提报数
/// </summary>
public int? reported_qty { get; set; }
/// <summary>
/// 生产数量
/// </summary>
public int? prd_qty { get; set; }
public int? scrap_qty { get; set; }
}
}