From 2d8739b04f86ab5e73ec7b0d3152e702a90a450b Mon Sep 17 00:00:00 2001 From: 移动系统liao <liaoxujun@qq.com> Date: 星期一, 14 七月 2025 16:34:49 +0800 Subject: [PATCH] 修改用户扩展资料 --- Admin.NET/FZCZTB.NET.MD/TenderOrderBidding.cs | 86 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 86 insertions(+), 0 deletions(-) diff --git a/Admin.NET/FZCZTB.NET.MD/TenderOrderBidding.cs b/Admin.NET/FZCZTB.NET.MD/TenderOrderBidding.cs new file mode 100644 index 0000000..71747ad --- /dev/null +++ b/Admin.NET/FZCZTB.NET.MD/TenderOrderBidding.cs @@ -0,0 +1,86 @@ +锘縰sing 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; } + + + + } +} -- Gitblit v1.9.1