This commit is contained in:
2025-09-02 14:59:16 +08:00
11 changed files with 415 additions and 36 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Response.LxmZHMDReport
{
public class MaterialAndQty
{
public string MaterialMasterId { get; set; }
public string MaterialNumber { get; set; }
public string MaterialName { get; set; }
public decimal Qty { get; set; }
}
}

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Response.LxmZHMDReport
{
public class PrdReportHead
{
public decimal YearPrdQty { get; set; }
public decimal YearInStockQty { get; set; }
public decimal MonthPrdQty { get; set; }
public decimal MonthInStockQty { get; set; }
public decimal StockQty { get; set; }
public DateTime dateTime { get; set; }
}
}