using System.ComponentModel.DataAnnotations; namespace WCS.Protocol.SX.BCR { /// /// 扫码头协议80 /// public interface IBCR80 : IProtocol { /// /// 内容 /// [StringLength(130)] string Content { get; set; } } }