This commit is contained in:
liqionghai
2025-08-24 02:51:25 +08:00
parent 9e4214fdd9
commit 160447703b
14 changed files with 294 additions and 98 deletions

View File

@@ -0,0 +1,49 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Response.PurOrder
{
public class PurOrderMainResp
{
public int Fid { get; set; }
/// <summary>
/// 供应商名称
/// </summary>
public string SupplierName { get; set; }
/// <summary>
/// 订单编号
/// </summary>
public string FBILLNO { get; set; }
/// <summary>
/// 采购日期
/// </summary>
public string FDate { get; set; }
/// <summary>
/// 总数量
/// </summary>
public decimal Qty { get; set; }
/// <summary>
/// 总入库数量
/// </summary>
public decimal StockInQty { get; set; }
/// <summary>
/// 总未入库数量
/// </summary>
public decimal RemainStockInQty { get; set; }
/// <summary>
/// 入库比例
/// </summary>
public decimal StockInRate { get; set; }
}
}