Factory.cs
1.1 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
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 工厂表
/// </summary>
[Table("base_factory")]
public partial class Factory : SysEntity
{
public Factory()
{
}
/// <summary>
/// 工厂代号
/// </summary>
[Column("factoryCode")]
public string FactoryCode { get; set; }
/// <summary>
/// 工厂名称
/// </summary>
[Column("factoryName")]
public string FactoryName { get; set; }
/// <summary>
/// 地址
/// </summary>
[Column("address")]
public string Address { get; set; }
/// <summary>
/// 电话
/// </summary>
[Column("telephone")]
public string Telephone { get; set; }
/// <summary>
/// 集团
/// </summary>
[Column("companyGroup")]
public string CompanyGroup { get; set; }
/// <summary>
/// 用于构建ztree
/// </summary>
[Column("factoryKey")]
public Guid factoryKey { get; set; }
}
}