username@email.com
2025-08-25 24f914a80d01fa8e5c6cfcba14ae59a6c0a117a8
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
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_TenderOrderBidding")]
    [IncreTable]
    public partial class TenderOrderBidding : basemodelNoId
    {
        /// <summary>
        /// 投标ID,主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true)]
        public Guid Id { get; set; }
 
        /// <summary>
        /// 招标ID
        /// </summary>
        [SugarColumn(ColumnDescription = "招标ID")]
        public Guid TenderId { get; set; }
 
 
        /// <summary>
        /// 投标文件
        /// </summary>
        [SugarColumn(Length = 512, IsNullable = true, ColumnDescription = "投标文件")]
        public string Touboaowenjian { get; set; }
 
        /// <summary>
        /// 投标文件name
        /// </summary>
        [SugarColumn(Length = 512, IsNullable = true, ColumnDescription = "投标文件Name")]
        public string TouboaowenjianName { get; set; }
 
 
        /// <summary>
        /// 是否中标
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "是否中标")]
        public bool? IsSelected { get; set; }
 
        /// <summary>
        /// 中标时间
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "中标时间")]
        public  DateTime? SelectedTime { get; set; }
 
 
        /// <summary>
        /// 是否支付
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "是否支付")]
        public bool? IsTransfer { get; set; }
 
        /// <summary>
        /// 支付时间
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "支付时间")]
        public DateTime? TransferTime { get; set; }
 
 
        /// <summary>
        /// 支付编号
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "支付编号")]
        public string TransferNo { get; set; }
 
        /// <summary>
        ///支付金额
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "支付金额")]
        public decimal? Zhifujine { get; set; }
 
        /// <summary>
        /// 支付返回标号
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "支付返回标号")]
        public string TradeNo { get; set; }
 
        /// <summary>
        /// 创建者CusExtendId
        /// </summary>
        [OwnerUser]
        [SugarColumn(ColumnDescription = "创建者CusExtendId", IsOnlyIgnoreUpdate = true)]
        public long? CusExtendId { get; set; }
 
 
 
 
        /// <summary>
        /// 是否支付代理费
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "是否支付代理费")]
        public bool? IsDailiTransfer { get; set; }
 
        /// <summary>
        /// 代理费支付时间
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "代理费支付时间")]
        public DateTime? DailiTransferTime { get; set; }
 
 
        /// <summary>
        /// 代理费支付编号
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "代理费支付编号")]
        public string DailiTransferNo { get; set; }
 
        /// <summary>
        ///代理支付金额
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "代理支付金额")]
        public decimal? DailiZhifujine { get; set; }
 
        /// <summary>
        /// 代理支付返回标号
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "代理支付返回标号")]
        public string DailiTradeNo { get; set; }
 
 
    }
}