ComBasePurchaseAgreementCtrlEntity.cs 988 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. using Core.Mes.Client.Comm.Attribute;
  2. using Newtonsoft.Json;
  3. using System;
  4. using System.ComponentModel;
  5. namespace Core.StlMes.Client.Qcm.model
  6. {
  7. public class ComBasePurchaseAgreementCtrlEntity : ComBasePurchaseAgreementEntity
  8. {
  9. private string suppCodes = "";
  10. /// <summary>
  11. /// 供应商代码
  12. /// </summary>
  13. [Description("供应商代码")]
  14. [Nullable(false)]
  15. [DataLength(20)]
  16. [JsonProperty("suppCodes")]
  17. public string SuppCodes
  18. {
  19. get { return suppCodes; }
  20. set { suppCodes = value; }
  21. }
  22. private string suppDescs = "";
  23. /// <summary>
  24. /// 供应商名称
  25. /// </summary>
  26. [Description("供应商名称")]
  27. [Nullable(false)]
  28. [DataLength(20)]
  29. [JsonProperty("suppDescs")]
  30. public string SuppDescs
  31. {
  32. get { return suppDescs; }
  33. set { suppDescs = value; }
  34. }
  35. }
  36. }