123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Runtime.Serialization;
- using System.Text;
- using System.Threading.Tasks;
- namespace WCS.Entity.Protocol
- {
- [DataContract]
- public class WCS_BCR80 : WCS_PROTOCOLDATA, IBCR80
- {
- [DataMember(Order = 0)]
- [StringLength(200)]
- public string CONTENT { get; set; }
- }
- }
|