username@email.com
4 天以前 806a9514e47408abd36065aa9c8226e571835f2f
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
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>
        /// 是否中标
        /// </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; }
 
 
 
    }
}