WcsActionAddress.cs 801 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. 
  2. using System.ComponentModel.DataAnnotations;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. namespace WCS.Entitys
  5. {
  6. [Table("wcs_action_address")]
  7. public class WcsActionAddress
  8. {
  9. [Key]
  10. [Column("id")]
  11. [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
  12. public int Id { get; set; }
  13. [Column("action_id")]
  14. public int ActionId { get; set; }
  15. [Column("type")]
  16. public string? Type { get; set; }
  17. [Column("address")]
  18. public string? Address { get; set; }
  19. [Column("value")]
  20. public string? Value { get; set; }
  21. [Column("check_type")]
  22. public bool CheckType { get; set; }
  23. [Column("sort")]
  24. public int Sort { get; set; }
  25. }
  26. }