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

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,99 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
{
/// <summary>
/// 生产提报输入参数
/// </summary>
public class PrdReportCrInput
{
/// <summary>
/// Desc:创建时间
/// Default:
/// Nullable:True
/// </summary>
public DateTime? create_time { get; set; }
/// <summary>
/// Desc:修改时间
/// Default:
/// Nullable:True
/// </summary>
public DateTime? modify_time { get; set; }
/// <summary>
/// Desc:扩展字段
/// Default:
/// Nullable:True
/// </summary>
public string extras { get; set; }
/// <summary>
/// Desc:备注
/// Default:NULL::character varying
/// Nullable:True
/// </summary>
public string remark { get; set; }
/// <summary>
/// Desc:创建用户
/// Default:NULL::character varying
/// Nullable:True
/// </summary>
public string create_id { get; set; }
/// <summary>
/// Desc:修改用户
/// Default:NULL::character varying
/// Nullable:True
/// </summary>
public string modify_id { get; set; }
/// <summary>
/// Desc:生产任务Id
/// Default:NULL::character varying
/// Nullable:True
/// </summary>
public string icmo_id { get; set; }
/// <summary>
/// Desc:生产数量
/// Default:
/// Nullable:True
/// </summary>
public int prd_qty { get; set; }
/// <summary>
/// Desc:已报工数量
/// Default:
/// Nullable:True
/// </summary>
public int reported_work_qty { get; set; }
/// <summary>
/// Desc:提报数量
/// Default:
/// Nullable:True
/// </summary>
public int reported_qty { get; set; }
/// <summary>
/// Desc:生产任务编码
/// Default:
/// Nullable:True
/// </summary>
public string icmo_code { get; set; }
/// <summary>
/// Desc:生产任务量
/// Default:
/// Nullable:True
/// </summary>
public int icmo_qty { get; set; }
}
}