生产管理,新增生产提报,自检报废接口
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user