Supplier.cs
1.79 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 供应商表
/// </summary>
[Table("supplier")]
public partial class Supplier : SysEntity
{
public Supplier()
{
}
/// <summary>
/// 编码
/// </summary>
[Column("code")]
public string Code { get; set; }
/// <summary>
/// 名称
/// </summary>
[Column("name")]
public string Name { get; set; }
/// <summary>
/// 地址1
/// </summary>
[Column("address")]
public string Address { get; set; }
/// <summary>
/// 城市
/// </summary>
[Column("city")]
public string City { get; set; }
/// <summary>
/// 省份
/// </summary>
[Column("province")]
public string Province { get; set; }
/// <summary>
/// 国家
/// </summary>
[Column("country")]
public string Country { get; set; }
/// <summary>
/// 邮编
/// </summary>
[Column("postalCode")]
public string PostalCode { get; set; }
/// <summary>
/// 联系人
/// </summary>
[Column("attentionTo")]
public string AttentionTo { get; set; }
/// <summary>
/// 电话
/// </summary>
[Column("phoneNum")]
public string PhoneNum { get; set; }
/// <summary>
/// 手机
/// </summary>
[Column("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 传真
/// </summary>
[Column("faxNum")]
public string FaxNum { get; set; }
/// <summary>
/// E-mail
/// </summary>
[Column("email")]
public string Email { get; set; }
}
}