12345678910111213141516171819202122232425262728293031323334353637383940 |
- using LJLib.DAL.SQL;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace JLHHJSvr.Com.Model
- {
- [PK(new[] { "mattressid", "printid" })]
- public sealed class u_mattress_interface_qd
- {
- public int? mattressid { get; set; }
- 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 int? mtrlid { get; set; }
- public int? erp_mtrlid { get; set; }
- public int? wrkgrpid { 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; }
- public decimal? qd_pfgroupqty { get; set; }
- public decimal? ss_rate { get; set; }
- public decimal? ls_rate { get; set; }
- public decimal? sh_rate { 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; }
- #endregion
- }
- }
|