using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WCS.Entity.Protocol { /// /// 扫码头协议20 /// public interface IBCR80 : IProtocol { /// /// 内容 /// [StringLength(200)] string CONTENT { get; set; } } }