erp_mtrl_df.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using LJLib.DAL.SQL;
  3. namespace JLHHJSvr.Com.Model
  4. {
  5. [PK(new[] { "mtrlid,pfcode" })]
  6. public sealed class u_mtrl_pf
  7. {
  8. public int mtrlid { get; set; }
  9. public string pfcode { get; set; }
  10. public int ifdft { get; set; }
  11. public int inuse { get; set; }
  12. public string Dscrp { get; set; }
  13. public int Ifdi { get; set; }
  14. public DateTime opdate { get; set; }
  15. public string opemp { get; set; }
  16. public DateTime? moddate { get; set; }
  17. public string modemp { get; set; }
  18. public int flag { get; set; }
  19. public DateTime? auditdate { get; set; }
  20. public string auditemp { get; set; }
  21. public int affirmflag { get; set; }
  22. public string affirmemp { get; set; }
  23. public DateTime? affirmdate { get; set; }
  24. public int pftype { get; set; }
  25. public int ifpzpf { get; set; }
  26. public int if_saletask { get; set; }
  27. public int wrkid { get; set; }
  28. public int fjcnt { get; set; }
  29. public string vercode { get; set; }
  30. }
  31. }