From 24a3e64f5713fb0c6f8bae865715c66308371955 Mon Sep 17 00:00:00 2001 From: username@email.com <yzy2002yzy@163.com> Date: 星期四, 15 八月 2024 12:54:55 +0800 Subject: [PATCH] Merge branch 'master' of http://47.108.235.38:8080/r/cylsg --- cylsg/cylsg.Model/OrderModel/OrderBidding.cs | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 57 insertions(+), 0 deletions(-) diff --git a/cylsg/cylsg.Model/OrderModel/OrderBidding.cs b/cylsg/cylsg.Model/OrderModel/OrderBidding.cs new file mode 100644 index 0000000..13602e6 --- /dev/null +++ b/cylsg/cylsg.Model/OrderModel/OrderBidding.cs @@ -0,0 +1,57 @@ +锘縰sing cylsg.Core; +using cylsg.Core.Attributes; +using SqlSugar; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace cylsg.Model.OrderModel +{ + /// <summary> + /// 宸ヤ汉鎶曢�� + /// </summary> + [Description("宸ヤ汉鎶曢��")] + [CoderFirst] + public class OrderBidding : BaseModel + { + /// <summary> + /// 宸ヤ汉鎶曢�扞d + /// </summary> + [SugarColumn(ColumnDescription = "宸ヤ汉鎶曢�扞d", IsPrimaryKey = true, IsIdentity = true)] + public int Id { get; set; } + + /// <summary> + /// 鐢ㄦ埛id + /// </summary> + [SugarColumn(ColumnDescription = "鐢ㄦ埛id")] + public int WorkerUserId { get; set; } + + + /// <summary> + /// 鏄惁閫変腑 + /// </summary> + [SugarColumn(ColumnDescription = "鏄惁閫変腑", IsNullable = true)] + public bool? IsSelected { get; set; } + + /// <summary> + /// 閫変腑鏃堕棿 + /// </summary> + [SugarColumn(ColumnDescription = "閫変腑鏃堕棿", IsNullable = true)] + public DateTime? Selectedtime { get; set; } + + /// <summary> + /// 澶囨敞 + /// </summary> + [SugarColumn(ColumnDescription = "澶囨敞", ColumnDataType = "nvarchar(250)", IsNullable = true)] + public string Remark { get; set; } + + /// <summary> + /// 宸ヨ祫鎬婚 + /// </summary> + [SugarColumn(ColumnDescription = "宸ヨ祫鎬婚", Length = 18, DecimalDigits = 2, IsNullable = true)] + public decimal? Salary { get; set; } + } +} -- Gitblit v1.9.1