123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace JLHHJSvr.Com.Model
- {
- public abstract class BaseInterfaceQd
- {
- public int? printid { get; set; }
- public string itemname { get; set; }
- public string bj_pzname { get; set; }
- public string bj_pzname_mx { get; set; }
- public string bj_pzname_mx_mx { get; set; }
- public string wip_type { get; set; }
- public int? mtrlid { get; set; }
- public int? erp_mtrlid { get; set; }
- public int? wrkgrpid { get; set; }
- public int? wrkgrpid2 { get; set; }
- public decimal? useqty { get; set; }
- public string dscrp { get; set; }
- public decimal? actual_useqty { get; set; }
- public string qd_actual_size { get; set; }
- #region 辅助
- public string erp_mtrlcode { get; set; }
- public string erp_mtrlname { get; set; }
- public string erp_mtrlmode { get; set; }
- public string erp_unit { get; set; }
- public string erp_mtrlengname { get; set; }
- public int? billtype { get; set; }
- public int? formulaid { get; set; }
- /// <summary>
- /// 核价清单1的领料工组
- /// </summary>
- public string wrkgrpcode1 { get; set; }
- /// <summary>
- /// 核价清单2的领料工组
- /// </summary>
- public string wrkgrpcode2 { get; set; }
- public string sonLossstr { get; set; }
- #endregion
- }
- }
|