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