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