erp_mtrldef.cs 568 B

12345678910111213141516171819202122
  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? mtrlid { get; set; }
  12. public int? mtrltypeid { get; set; }
  13. public string mtrltype { get; set; }
  14. public string mtrlcode { get; set; }
  15. public string mtrlname { get; set; }
  16. public string mtrlmode { get; set; }
  17. public string unit { get; set; }
  18. public string mtrlengname { get; set; }
  19. public int? dftwrkgrpid { get; set; }
  20. }
  21. }