IBCR.cs 434 B

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