IBCR80.cs 394 B

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