blob: 3b5d6a580d35a0c23e5a8628bc2db621b549a932 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
namespace HousingWebApi
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.Spatial;
[Table("sys.database_firewall_rules")]
public partial class database_firewall_rules
{
[Key]
[Column(Order = 0)]
public int id { get; set; }
[Key]
[Column(Order = 1)]
public string name { get; set; }
[Key]
[Column(Order = 2)]
[StringLength(45)]
public string start_ip_address { get; set; }
[Key]
[Column(Order = 3)]
[StringLength(45)]
public string end_ip_address { get; set; }
[Key]
[Column(Order = 4)]
public DateTime create_date { get; set; }
[Key]
[Column(Order = 5)]
public DateTime modify_date { get; set; }
}
}
|