# Conflicts:
#	Reportapi/MyCode.Project.Services/MyCode.Project.Services.csproj
This commit is contained in:
liqionghai
2025-08-24 13:07:09 +08:00
51 changed files with 2542 additions and 388 deletions

View File

@@ -0,0 +1,43 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Response.LxmZHMDReport
{
/// <summary>
/// 生产订单大屏数据
/// </summary>
public class PrdMoOrderEntryResp
{
/// <summary>
/// 生产订单分录行号
/// </summary>
public int Seq { get; set; }
/// <summary>
/// 物料名称
/// </summary>
public string MaterialName { get; set; }
/// <summary>
/// 生产车间
/// </summary>
public string DeptName { get; set; }
/// <summary>
/// 数量
/// </summary>
public decimal Qty { get; set; }
/// <summary>
/// 入库总、数量
/// </summary>
public decimal InStockQty { get; set; }
/// <summary>
/// 业务状态
/// </summary>
public string MoStatus { get; set; }
}
}

View File

@@ -0,0 +1,39 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Response.LxmZHMDReport
{
/// <summary>
/// 生产订单大屏数据
/// </summary>
public class PrdMoOrderResp
{
/// <summary>
/// 生产订单Id
/// </summary>
public int Fid { get; set; }
/// <summary>
/// 订单编号
/// </summary>
public string FBILLNO { get; set; }
/// <summary>
/// 订单编号
/// </summary>
public DateTime FDate { get; set; }
/// <summary>
/// 总数量
/// </summary>
public decimal Qty { get; set; }
/// <summary>
/// 入库总数量
/// </summary>
public decimal InStockQty { get; set; }
}
}