SuppJl.cs 903 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. using System;
  2. using System.Text;
  3. namespace com.hnshituo.pur.vo
  4. {
  5. [Serializable]
  6. public class SuppJl
  7. {
  8. /** WM供应商编码 */
  9. private string unitcode;
  10. public string Unitcode
  11. {
  12. get { return unitcode; }
  13. set { unitcode = value; }
  14. }
  15. /** WM供应商名称 */
  16. private string unitname;
  17. public string Unitname
  18. {
  19. get { return unitname; }
  20. set { unitname = value; }
  21. }
  22. /** PMS供应商编码 */
  23. private string erpcode;
  24. public string Erpcode
  25. {
  26. get { return erpcode; }
  27. set { erpcode = value; }
  28. }
  29. /** PMS数据类型 */
  30. private string recordtype;
  31. public string Recordtype
  32. {
  33. get { return recordtype; }
  34. set { recordtype = value; }
  35. }
  36. /** 更新时间 */
  37. private DateTime? uptime;
  38. public DateTime? Uptime
  39. {
  40. get { return uptime; }
  41. set { uptime = value; }
  42. }
  43. }
  44. }