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