| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | |
| | | public string Caigoufangshi { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 采购遇算 |
| | | /// 采购预算 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "采购遇算")] |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "采购预算", Length = 18, DecimalDigits = 4)] |
| | | public decimal? Caigouyusuan { get; set; } |
| | | |
| | | /// <summary> |
| | |
| | | /// <summary> |
| | | /// 报名费 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "报名费")] |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "报名费", Length = 18, DecimalDigits = 4)] |
| | | public decimal? Baomingfei { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 投标保证金 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "投标保证金")] |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "投标保证金", Length = 18, DecimalDigits = 4)] |
| | | public decimal? Toubiaobaozhengjin { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 履约保证金 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "投标保证金",Length = 18, DecimalDigits = 4)] |
| | | public decimal? LVyuebaozhengjin { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 招标代理费 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "投标保证金", Length = 18, DecimalDigits = 4)] |
| | | public decimal? Zhaobiaodailifei { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | |
| | | public string DailijingliLianxidianhua { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 是否接受保函 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "是否接受保函")] |
| | | public bool? Isbaohan { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 质疑有无 |
| | |
| | | |
| | | |
| | | /// <summary> |
| | | /// 订单状态 |
| | | /// 订单状态 1保存 2 发布 3 中标 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "订单状态")] |
| | | public int? OrderStatus { get; set; } |
| | |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "中标时间")] |
| | | public DateTime? ZhongbiaoDate { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 中标公告 |
| | | /// </summary> |
| | | [SugarColumn(Length = 512, IsNullable = true, ColumnDescription = "中标公告")] |
| | | public string Zhongbiaogonggao { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 中标公告Name |
| | | /// </summary> |
| | | [SugarColumn(Length = 512, IsNullable = true, ColumnDescription = "中标公告Name")] |
| | | public string ZhongbiaogonggaoName { get; set; } |
| | | |
| | | |
| | | |
| | | /// <summary> |
| | | /// 中标tittle |
| | | /// </summary> |
| | | [SugarColumn(Length = 200, IsNullable = true, ColumnDescription = "中标tittle")] |
| | | public string ZhongbiaoTittle { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 创建者CusExtendId |
| | | /// </summary> |
| | | [OwnerUser] |
| | | [SugarColumn(ColumnDescription = "创建者CusExtendId", IsOnlyIgnoreUpdate = true)] |
| | | public long? CusExtendId { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 发布角色 |
| | | /// </summary> |
| | | [SugarColumn(Length = 200, IsNullable = true, ColumnDescription = "发布角色")] |
| | | public string CustomerLogoinType { get; set; } |
| | | |
| | | } |
| | | } |