Files
SGGL_SHJ/SGGL/Model/CLGL/Tw_ArrivalStatisticsOutPut.cs
T
lpf 2de696fad2 feat: 完善焊接质量检查和材料管理
补齐焊前专项审核和焊缝外观检测流程,统一质检查询、附件处理与材料明细导出,提升业务数据追溯和组件匹配使用效率。
2026-08-10 17:58:55 +08:00

27 lines
851 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class Tw_ArrivalStatisticsOutPut
{
public string MaterialCode { get; set; }
public string Code { get; set; }
public string HeatNo { get; set; }
public string BatchNo { get; set; }
public string MaterialName { get; set; }
public string MaterialSpec { get; set; }
public string MaterialUnit { get; set; }
public string MaterialDef { get; set; }
public decimal StockNum { get; set; }
public decimal NeedNum { get; set; }
public decimal RealNum { get; set; }
public decimal OutputNum { get; set; }
public decimal MatchRate { get; set; }
public string MatchRateString { get; set; }
}
}