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/OrderBiddingDetail.cs | 99 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 99 insertions(+), 0 deletions(-) diff --git a/cylsg/cylsg.Model/OrderModel/OrderBiddingDetail.cs b/cylsg/cylsg.Model/OrderModel/OrderBiddingDetail.cs new file mode 100644 index 0000000..28d48b4 --- /dev/null +++ b/cylsg/cylsg.Model/OrderModel/OrderBiddingDetail.cs @@ -0,0 +1,99 @@ +锘縰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 OrderBiddingDetail : BaseModel + { + /// <summary> + /// 宸ヤ汉宸ヤ綔鏄庣粏琛↖d + /// </summary> + [SugarColumn(ColumnDescription = "宸ヤ汉宸ヤ綔鏄庣粏琛↖d", IsPrimaryKey = true, IsIdentity = true)] + public int Id { get; set; } + + /// <summary> + /// 宸ヤ汉鎶曢�抜d + /// </summary> + [SugarColumn(ColumnDescription = "宸ヤ汉鎶曢�抜d")] + public int OrderBiddingId { get; set; } + + /// <summary> + /// 宸ヤ綔鏃ユ湡 + /// </summary> + [SugarColumn(ColumnDescription = "宸ヤ綔鏃ユ湡", IsNullable = true)] + public DateTime? WorkDate { get; set; } + + /// <summary> + /// 宸ヤ綔鏃堕暱 + /// </summary> + [SugarColumn(ColumnDescription = "宸ヤ綔鏃堕暱", Length = 18, DecimalDigits = 2, IsNullable = true)] + public decimal? WorkTime { get; set; } + + /// <summary> + /// 璁′欢鏁伴噺 + /// </summary> + [SugarColumn(ColumnDescription = "璁′欢鏁伴噺", Length = 18, DecimalDigits = 2, IsNullable = true)] + public decimal? WorkCount { get; set; } + + /// <summary> + /// 褰撴棩宸ヨ祫 + /// </summary> + [SugarColumn(ColumnDescription = "褰撴棩宸ヨ祫", Length = 18, DecimalDigits = 2, IsNullable = true)] + public decimal? TodaySalary { get; set; } + + /// <summary> + /// 瀹℃壒鐘舵�� + /// </summary> + [SugarColumn(ColumnDescription = "瀹℃壒鐘舵��", IsNullable = true)] + public IsShenPis? IsShenPi { get; set; } + + /// <summary> + /// 瀹℃壒鏃堕棿 + /// </summary> + [SugarColumn(ColumnDescription = "瀹℃壒鏃堕棿", IsNullable = true)] + public DateTime? ShenPitime { get; set; } + + + /// <summary> + /// 鏄惁鎻愮幇 + /// </summary> + [SugarColumn(ColumnDescription = "鏄惁鎻愮幇", IsNullable = true)] + public bool? IsTiXian { get; set; } + + /// <summary> + /// 鎻愮幇鏃堕棿 + /// </summary> + [SugarColumn(ColumnDescription = "鎻愮幇鏃堕棿", IsNullable = true)] + public DateTime? TiXiantime { get; set; } + } + + + + /// <summary> + /// 瀹℃壒鐘舵�� + /// </summary> + public enum IsShenPis + { + /// <summary> + ///璁℃椂 + /// </summary> + weishenpi = 0, + /// <summary> + ///璁′欢 + /// </summary> + yishenpi = 1 + + } +} -- Gitblit v1.9.1