IBCR81.cs 370 B

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