erp_mtrldef.cs 641 B

123456789101112131415161718192021222324
  1. using LJLib.DAL.SQL;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace JLHHJSvr.Com.Model
  7. {
  8. [PK(new[] { "mtrlid" })]
  9. public sealed class erp_mtrldef
  10. {
  11. public int? rowNum { get; set; }
  12. public int? mtrlid { get; set; }
  13. public int? mtrltypeid { get; set; }
  14. public string mtrltype { get; set; }
  15. public string mtrlcode { get; set; }
  16. public string mtrlname { get; set; }
  17. public string mtrlmode { get; set; }
  18. public string unit { get; set; }
  19. public string mtrlengname { get; set; }
  20. public string zxmtrlmode { get; set; }
  21. public int? dftwrkgrpid { get; set; }
  22. }
  23. }