1234567891011121314151617 |
- using System.ComponentModel.DataAnnotations;
- using WCS.Entity.Protocol.BCR;
- namespace WCS.WorkEngineering.Protocol.BCR
- {
- /// <summary>
- /// 扫码头协议81
- /// </summary>
- public interface IBCR81 : BCR81
- {
- /// <summary>
- /// 内容
- /// </summary>
- [StringLength(20)]
- new string Content { get; set; }
- }
- }
|