| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using Infragistics.Win.UltraWinGrid;
- namespace Core.StlMes.Client.LgResMgt.库存位置
- {
- public class MatInfo
- {
- [Description("选择")]
- public bool Chk { get; set; }
- [Description("料位")]
- public string LocationNo { get; set; }
- [Description("层号")]
- public string LaryNo { get; set; }
- [Description("类型")]
- public string MatType { get; set; }
- [Description("目标层号")]
- public string LaryNoTo { get; set; }
- [Description("料位名称")]
- public string LocationName { get; set; }
- [Description("熔炉炉号")]
- public string StoveNo { get; set; }
- [Description("判定炉号")]
- public string JudgeStoveNo { get; set; }
- [Description("批号")]
- public string BatchNo { get; set; }
- [Description("钢种")]
- public string Gradename { get; set; }
- [Description("钢级")]
- public string Steelname { get; set; }
- [Description("直径/外径")]
- public string ActDimater { get; set; }
- [Description("壁厚")]
- public string ActHeight { get; set; }
- [Description("倍尺数")]
- public string FixNum { get; set; }
- [Description("长度")]
- public string ActLen { get; set; }
- [Description("长度范围")]
- public string LengthRange { get; set; }
- [Description("支数")]
- public decimal? ActCount { get; set; }
- [Description("重量")]
- public decimal? ActWeight { get; set; }
- [Description("判定结果")]
- public string QcmStaus { get; set; }
- [Description("材料类别")]
- public string ProductFlag { get; set; }
-
- [Description("合同号")]
- public string OrderNo { get; set; }
- [Description("客户")]
- public string CustomerNm { get; set; }
- [Description("生产批号")]
- public string LotNo { get; set; }
- [Description("备注")]
- public string Memo { get; set; }
- [Description("备注1")]
- public string Memo1 { get; set; }
- [Description("倒垛班次")]
- public string Bc { get; set; }
- [Description("倒垛班组")]
- public string Bz { get; set; }
- [Description("倒垛人")]
- public string UserName { get; set; }
- [Description("部门id")]
- public string Deptid { get; set; }
- [Description("部门")]
- public string DeptName { get; set; }
- [Description("来料厂商")]
- public string SoureName { get; set; }
- public UltraGridCell UltraGridCell { get; set; }
- [Description("材料状态")]
- public string MatState { get; set; }
- [Description("品名描述")]
- public string Producname { get; set; }
- /// <summary>
- ///新增下面4个 tzh 2024.8.15
- /// </summary>
- [Description("判定字头")]
- public string PdZt { get; set; }
- [Description("是否送判")]
- public string IfSp { get; set; }
- [Description("入库时间")]
- public string InstockTime { get; set; }
- [Description("去向")]
- public string MatGowhereName { get; set; }
- }
- }
|