BCR.cs 424 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Runtime.Serialization;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace WCS.Entity.Protocol
  9. {
  10. [DataContract]
  11. public class WCS_BCR80 : WCS_PROTOCOLDATA, IBCR80
  12. {
  13. [DataMember(Order = 0)]
  14. [StringLength(200)]
  15. public string CONTENT { get; set; }
  16. }
  17. }