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