username@email.com
2025-11-05 f210a0e0fc0552bfacb2489de099bd512b8e74e7
Admin.NET/FZCZTB.NET.MD/TenderOrder.cs
@@ -3,6 +3,7 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
@@ -48,9 +49,9 @@
        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>
@@ -62,14 +63,26 @@
        /// <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>
@@ -212,6 +225,11 @@
        public string DailijingliLianxidianhua { get; set; }
        /// <summary>
        /// 是否接受保函
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "是否接受保函")]
        public bool? Isbaohan { get; set; }
        /// <summary>
        /// 质疑有无
@@ -228,7 +246,7 @@
        /// <summary>
        /// 订单状态
        /// 订单状态 1保存 2 发布  3 中标
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "订单状态")]
        public int? OrderStatus { get; set; }
@@ -267,10 +285,22 @@
        public string Zhaobiaowenjian { get; set; }
        /// <summary>
        /// 招标文件Name
        /// </summary>
        [SugarColumn(Length = 512, IsNullable = true, ColumnDescription = "招标文件Name")]
        public string ZhaobiaowenjianName { get; set; }
        /// <summary>
        /// 附件
        /// </summary>
        [SugarColumn(Length = 512, IsNullable = true, ColumnDescription = "附件")]
        public string Fujian { get; set; }
        /// <summary>
        /// 附件Name
        /// </summary>
        [SugarColumn(Length = 512, IsNullable = true, ColumnDescription = "附件Name")]
        public string FujianName { get; set; }
        /// <summary>
        /// 开标地点
@@ -288,7 +318,7 @@
        /// <summary>
        /// 中标供应商姓名
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "中标供应商姓名", Length = 100)]
        [SugarColumn(IsNullable = true, ColumnDescription = "中标供应商姓名", Length = 2000)]
        public  string ZhongbiaoName { get; set; }
        /// <summary>
@@ -307,8 +337,14 @@
        /// <summary>
        /// 中标文件
        /// </summary>
        [SugarColumn(Length = 2000, IsNullable = true, ColumnDescription = "中标文件")]
        [SugarColumn(Length = 512, IsNullable = true, ColumnDescription = "中标文件")]
        public string Zhongbiaowenjian { get; set; }
        /// <summary>
        /// 中标文件Name
        /// </summary>
        [SugarColumn(Length = 512, IsNullable = true, ColumnDescription = "中标文件中标文件Name")]
        public string ZhongbiaowenjianName { get; set; }
        /// <summary>
        /// 中标时间
@@ -316,11 +352,41 @@
        [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; }
    }
}