BCR.cs 336 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace WCS.Entity.Protocol
  8. {
  9. public class WCS_BCRDATA : WCS_PROTOCOLDATA, IBCR
  10. {
  11. [StringLength(20)]
  12. public string CONTENT { get; set; }
  13. }
  14. }