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/ChangeOrder.cs | 68 ++++++++++++++++++++++++++++++++++ 1 files changed, 68 insertions(+), 0 deletions(-) diff --git a/Admin.NET/FZCZTB.NET.MD/ChangeOrder.cs b/Admin.NET/FZCZTB.NET.MD/ChangeOrder.cs new file mode 100644 index 0000000..4aab47d --- /dev/null +++ b/Admin.NET/FZCZTB.NET.MD/ChangeOrder.cs @@ -0,0 +1,68 @@ +锘縰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_ChangeOrder")] + [IncreTable] + public partial class ChangeOrder : basemodelNoId + { + /// <summary> + /// 鍙樻洿ID锛屼富閿� + /// </summary> + [SugarColumn(IsPrimaryKey = true)] + public Guid Id { get; set; } + + /// <summary> + /// 鎷涙爣ID锛屽閿� + /// </summary> + public Guid TenderId { get; set; } + + + /// <summary> + /// 椤圭洰鍚嶇О + /// </summary> + [SugarColumn(Length = 200, IsNullable = false, ColumnDescription = "椤圭洰鍚嶇О")] + public string ProjectName { get; set; } + + /// <summary> + /// 鍙樻洿鏂囦欢 + /// </summary> + [SugarColumn(Length = 512, IsNullable = true, ColumnDescription = "鍙樻洿鏂囦欢")] + public string Biangengwenjian { get; set; } + + /// <summary> + /// 鎶曟爣鎶ュ悕寮�濮嬫椂闂� + /// </summary> + [SugarColumn(IsNullable = true, ColumnDescription = "鎶曟爣鎶ュ悕寮�濮嬫椂闂�")] + public DateTime? ToubiaoStartDate { get; set; } + + + /// <summary> + /// 鎶曟爣鎶ュ悕缁撴潫鏃堕棿 + /// </summary> + [SugarColumn(IsNullable = true, ColumnDescription = "鎶曟爣鎶ュ悕缁撴潫鏃堕棿")] + public DateTime? ToubiaoEndDate { get; set; } + + /// <summary> + /// 寮�鏍囨椂闂� + /// </summary> + [SugarColumn(IsNullable = true, ColumnDescription = "寮�鏍囨椂闂�")] + public DateTime? KaibiaoDate { get; set; } + + /// <summary> + /// 寮�鏍囧湴鐐� + /// </summary> + [SugarColumn(Length = 250, IsNullable = true, ColumnDescription = "寮�鏍囧湴鐐�")] + public string Kaibiaodidian { get; set; } + } +} -- Gitblit v1.9.1