WCS_CMD.cs 525 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Text;
  5. namespace WCS.Entity
  6. {
  7. public class WCS_CMD : OBJ
  8. {
  9. [StringLength(20)]
  10. public string DEVICE_CODE { get; set; }
  11. [StringLength(256)]
  12. public string PROTOCOL{ get; set; }
  13. [StringLength(32)]
  14. public string PROPERTY { get; set; }
  15. [StringLength(512)]
  16. public string VALUE { get; set; }
  17. public int WCSVERSION { get; set; }
  18. }
  19. }