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