username@email.com
4 天以前 32259dd7c936012325afba0e9120b7111726189d
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
using Admin.NET.Core;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace FZCZTB.NET.MD
{
    /// <summary>
    /// 投诉质疑结果
    /// </summary>
    [SugarTable("FB_ChangeOrder")]
    [IncreTable]
    public partial class ChangeOrder : basemodelNoId
    {
        /// <summary>
        /// 变更ID,主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true)]
        public Guid Id { get; set; }
 
        /// <summary>
        /// 招标ID,外键
        /// </summary>
        public Guid TenderId { get; set; }
 
 
        /// <summary>
        /// 项目名称
        /// </summary>
        [SugarColumn(Length = 200, IsNullable = false, ColumnDescription = "项目名称")]
        public string ProjectName { get; set; }
 
        /// <summary>
        /// 变更文件
        /// </summary>
        [SugarColumn(Length = 512, IsNullable = true, ColumnDescription = "变更文件")]
        public string Biangengwenjian { get; set; }
 
        /// <summary>
        /// 投标报名开始时间
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "投标报名开始时间")]
        public DateTime? ToubiaoStartDate { get; set; }
 
 
        /// <summary>
        /// 投标报名结束时间
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "投标报名结束时间")]
        public DateTime? ToubiaoEndDate { get; set; }
 
        /// <summary>
        /// 开标时间
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "开标时间")]
        public DateTime? KaibiaoDate { get; set; }
 
        /// <summary>
        /// 开标地点
        /// </summary>
        [SugarColumn(Length = 250, IsNullable = true, ColumnDescription = "开标地点")]
        public string Kaibiaodidian { get; set; }
    }
}