IBCR83.cs 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System.ComponentModel.DataAnnotations;
  2. namespace WCS.Entity.Protocol.BCR
  3. {
  4. /// <summary>
  5. /// 满轮主线读取
  6. /// </summary>
  7. public interface IBCR83 : IProtocol
  8. {
  9. public short Index { get; set; }
  10. [StringLength(254)]
  11. public string BcrCode { get; set; }
  12. [StringLength(254)]
  13. public string BcrCode1 { get; set; }
  14. [StringLength(254)]
  15. public string BcrCode2 { get; set; }
  16. [StringLength(254)]
  17. public string BcrCode3 { get; set; }
  18. [StringLength(254)]
  19. public string BcrCode4 { get; set; }
  20. [StringLength(254)]
  21. public string BcrCode5 { get; set; }
  22. [StringLength(254)]
  23. public string BcrCode6 { get; set; }
  24. [StringLength(254)]
  25. public string BcrCode7 { get; set; }
  26. [StringLength(254)]
  27. public string BcrCode8 { get; set; }
  28. [StringLength(254)]
  29. public string BcrCode9 { get; set; }
  30. [StringLength(254)]
  31. public string BcrCode10 { get; set; }
  32. }
  33. }