1234567891011121314151617181920212223242526272829303132333435363738 |
-
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
-
- namespace WCS.Entitys
- {
- [Table("wcs_action_address")]
- public class WcsActionAddress
- {
- [Key]
- [Column("id")]
- [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
- public int Id { get; set; }
- [Column("action_id")]
- public int ActionId { get; set; }
- [Column("type")]
- public string? Type { get; set; }
- [Column("address")]
- public string? Address { get; set; }
- [Column("value")]
- public string? Value { get; set; }
-
- [Column("check_type")]
- public bool CheckType { get; set; }
-
- [Column("sort")]
- public int Sort { get; set; }
- }
-
- }
|