1
hao
2025-05-20 a494b3e44b6f3597d0a1fee302427cebc4316570
1
2
3
4
5
6
7
8
9
10
11
namespace gdbg.Models
{
    public class MaterialInfo
    {
        public string ItemCode { get; set; } // 物料编码
        public string ItemName { get; set; } // 物料名称
        public string ItemSpec { get; set; } // 规格型号
        public int OrderQuantity { get; set; } // 订单数量
        public int ProducedQuantity { get; set; } // 已生产数
    }
}