From 62751e74a70b6f1ca848e0f5fdb6fb8922d99f38 Mon Sep 17 00:00:00 2001 From: yanjinhui <3306209981@qq.com> Date: 星期四, 20 三月 2025 12:01:26 +0800 Subject: [PATCH] 冒泡排序 --- 项目代码/WIDESEAWCS_Server 正式/WIDESEAWCS_Model/Models/SerialPort/Dt_NjTask.cs | 30 +++++++++++++++--------------- 1 files changed, 15 insertions(+), 15 deletions(-) diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WIDESEAWCS_Server \346\255\243\345\274\217/WIDESEAWCS_Model/Models/SerialPort/Dt_NjTask.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WIDESEAWCS_Server \346\255\243\345\274\217/WIDESEAWCS_Model/Models/SerialPort/Dt_NjTask.cs" index 51263d3..b153619 100644 --- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WIDESEAWCS_Server \346\255\243\345\274\217/WIDESEAWCS_Model/Models/SerialPort/Dt_NjTask.cs" +++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WIDESEAWCS_Server \346\255\243\345\274\217/WIDESEAWCS_Model/Models/SerialPort/Dt_NjTask.cs" @@ -162,53 +162,53 @@ /// 鍒涘缓鏃堕棿 /// </summary> [SugarColumn(IsNullable = true)] - public DateTime createTime { get; set; } + public DateTime? createTime { get; set; } /// <summary> /// 涓嬪彂浠诲姟鏃堕棿 /// </summary> [SugarColumn(IsNullable = true)] - public DateTime dispatchTime { get; set; } + public DateTime? dispatchTime { get; set; } /// <summary> /// 寮�濮嬩綔涓氭椂闂� /// </summary> [SugarColumn(IsNullable = true)] - public DateTime startTime { get; set; } + public DateTime? startTime { get; set; } /// <summary> /// 鏈烘寮�濮嬫椂闂� /// </summary> [SugarColumn(IsNullable = true)] - public DateTime startTime_LC { get; set; } + public DateTime? startTime_LC { get; set; } /// <summary> /// 鏈烘瀹屾垚鏃堕棿 /// </summary> [SugarColumn(IsNullable = true)] - public DateTime endTime_LC { get; set; } + public DateTime? endTime_LC { get; set; } /// <summary> /// 鍦版矡寮�濮嬫椂闂� /// </summary> [SugarColumn(IsNullable = true)] - public DateTime startTime_DG { get; set; } + public DateTime? startTime_DG { get; set; } /// <summary> /// 鍦版矡瀹屾垚鏃堕棿 /// </summary> [SugarColumn(IsNullable = true)] - public DateTime endTime_DG { get; set; } + public DateTime? endTime_DG { get; set; } /// <summary> /// 鐢垫皵寮�濮嬫椂闂� /// </summary> [SugarColumn(IsNullable = true)] - public DateTime startTime_DQ { get; set; } + public DateTime? startTime_DQ { get; set; } /// <summary> @@ -216,48 +216,48 @@ /// </summary> [SugarColumn(IsNullable = true)] - public DateTime endTime_DQ { get; set; } + public DateTime? endTime_DQ { get; set; } /// <summary> /// 鏁翠釜浠诲姟瀹屾垚鏃堕棿 /// </summary> [SugarColumn(IsNullable = true)] - public DateTime endTime { get; set; } + public DateTime? endTime { get; set; } /// <summary> /// 鎶�鏈憳纭鏃堕棿 /// </summary> [SugarColumn(IsNullable = true)] - public DateTime confirmTime_JS { get; set; } + public DateTime? confirmTime_JS { get; set; } /// <summary> /// 宸ュ巶纭鏃堕棿 /// </summary> [SugarColumn(IsNullable = true)] - public DateTime confirmTime_GZ { get; set; } + public DateTime? confirmTime_GZ { get; set; } /// <summary> /// 鏈烘璐ㄦ鍛樼‘璁ゆ椂闂� /// </summary> [SugarColumn(IsNullable = true)] - public DateTime confirmTime_LC { get; set; } + public DateTime? confirmTime_LC { get; set; } /// <summary> /// 鍦版矡璐ㄦ鍛樼‘璁ゆ椂闂� /// </summary> [SugarColumn(IsNullable = true)] - public DateTime confirmTime_DG { get; set; } + public DateTime? confirmTime_DG { get; set; } /// <summary> /// 鐢垫皵璐ㄦ鍛樼‘璁ゆ椂闂� /// </summary> [SugarColumn(IsNullable = true)] - public DateTime confirmTime_DQ { get; set; } + public DateTime? confirmTime_DQ { get; set; } -- Gitblit v1.9.3