IBCR81.cs 392 B

123456789101112131415161718
  1. using System.ComponentModel.DataAnnotations;
  2. using WCS.Entity;
  3. using WCS.Entity.Protocol.BCR;
  4. namespace WCS.WorkEngineering.Protocol.BCR
  5. {
  6. /// <summary>
  7. /// 扫码头协议81
  8. /// </summary>
  9. public interface IBCR81 : IProtocol
  10. {
  11. /// <summary>
  12. /// 内容
  13. /// </summary>
  14. [StringLength(20)]
  15. new string Content { get; set; }
  16. }
  17. }