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>
        /// 质疑有无
@@ -363,5 +381,12 @@
        [SugarColumn(ColumnDescription = "创建者CusExtendId", IsOnlyIgnoreUpdate = true)]
        public  long? CusExtendId { get; set; }
        /// <summary>
        /// 发布角色
        /// </summary>
        [SugarColumn(Length = 200, IsNullable = true, ColumnDescription = "发布角色")]
        public string CustomerLogoinType { get; set; }
    }
}