TConfigPoint.cs
775 Bytes
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
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
///
/// </summary>
[Table("t_config_point")]
public partial class TConfigPoint : IdEntity
{
public TConfigPoint()
{
}
/// <summary>
///
/// </summary>
[Column("No")]
public int? No { get; set; }
/// <summary>
///
/// </summary>
[Column("Barcode")]
public string StrBarcode { get; set; }
/// <summary>
///
/// </summary>
[Column("AreaType")]
public int? AreaType { get; set; }
/// <summary>
///
/// </summary>
[Column("RegionName")]
public string StrRegionName { get; set; }
}
}