WCS_Users.cs 853 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. namespace WCS.Entity.Protocol
  7. {
  8. public class WCS_Users
  9. {
  10. [Key]
  11. [StringLength(128)]
  12. public string USER_NO { get; set; }
  13. [Required]
  14. [StringLength(128)]
  15. public string USER_PWD { get; set; }
  16. public byte[] USER_TEXT { get; set; }
  17. }
  18. public class WCS_MAPPINGENTRY
  19. {
  20. [Key]
  21. public int MEP_ID { get; set; }
  22. public int MEP_MAPPINGNO { get; set; }
  23. [Required]
  24. [StringLength(50)]
  25. public string MEP_MAPPINGTYPE { get; set; }
  26. [Required]
  27. [StringLength(50)]
  28. public string MEP_MAPPINGCHNAME { get; set; }
  29. public bool MEP_ISSTOP { get; set; }
  30. }
  31. }