From 557c2711a3e103ebc3d0492344eca9730d5e92b2 Mon Sep 17 00:00:00 2001 From: 移动系统liao <liaoxujun@qq.com> Date: 星期一, 17 二月 2025 10:47:47 +0800 Subject: [PATCH] 增加司机配送单超时处理任务,防止一直不停手机定位信息, --- CoreCms.Net.Model/Entities/Shop/CoreCmsStore.cs | 32 ++++++++++++++++++++++++++------ 1 files changed, 26 insertions(+), 6 deletions(-) diff --git a/CoreCms.Net.Model/Entities/Shop/CoreCmsStore.cs b/CoreCms.Net.Model/Entities/Shop/CoreCmsStore.cs index d554bd6..9cd4c58 100644 --- a/CoreCms.Net.Model/Entities/Shop/CoreCmsStore.cs +++ b/CoreCms.Net.Model/Entities/Shop/CoreCmsStore.cs @@ -1,12 +1,13 @@ /*********************************************************************** - * Project: CoreCms - * ProjectName: 鏍稿績鍐呭绠$悊绯荤粺 - * Web: https://www.corecms.net - * Author: 澶х伆鐏� - * Email: jianweie@163.com + * Project: baifenBinfa + * ProjectName: 鐧惧垎鍏垫硶绠$悊绯荤粺 + * Web: http://chuanyin.com + * Author: + * Email: 34161541@qq.com * CreateTime: 2021-06-08 22:14:59 * Description: 鏆傛棤 -***********************************************************************/ +***********************************************************************/ +using Chuanyin.Attribute; using SqlSugar; using System.ComponentModel.DataAnnotations; @@ -16,6 +17,7 @@ /// 闂ㄥ簵琛� /// </summary> [SugarTable("CoreCmsStore",TableDescription = "闂ㄥ簵琛�")] + //[SqlCodeFirst] public partial class CoreCmsStore { /// <summary> @@ -25,6 +27,7 @@ { } + /// <summary> /// 搴忓垪 /// </summary> @@ -122,5 +125,22 @@ [SugarColumn(ColumnDescription = "璺濈")] [Required(ErrorMessage = "璇疯緭鍏0}")] public System.Decimal distance { get; set; } + + + /// <summary> + /// 鎵�灞炵敤鎴风粡閿�鍟� 鍦ㄧ敵璇锋垚涓虹粡閿�鍟嗕笂寤虹珛搴楅摵鐨勬椂鍊欏叧鑱旓紝濡傛灉涓�0 鎴栬�呯┖锛屼负瀹樻柟鐩磋惀搴楋紝鍚庡彴鏂板缓绔嬪簵閾洪兘涓虹洿钀ュ簵 + /// </summary> + [Display(Name = "鎵�灞炵敤鎴�")] + [SugarColumn(ColumnDescription = "鎵�灞炵敤鎴�" ,IsNullable =true)] + public int? userID { get; set; } + + /// <summary> + /// 鏄惁鏈夋晥 + /// </summary> + [Display(Name = "鐢熸晥")] + [SugarColumn(ColumnDescription = "鐢熸晥",DefaultValue ="true")] + public bool en { get; set; }=true; + + } } \ No newline at end of file -- Gitblit v1.9.1