博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# 格林威治时间 跟本地时间 误差一天 处理办法自+1天
阅读量:5253 次
发布时间:2019-06-14

本文共 651 字,大约阅读时间需要 2 分钟。

1    public ActionResult Edit(int id, FormCollection collection) 2         { 3             var model = this.YearCheckService.GetYearCheck(id); 4              5             this.TryUpdateModel
(model); 6 model.YearCheckDate = model.YearCheckDate.AddDays(1); 7 model.DealStatus = (int)EnumHelp.DealStatus.End; 8 model.DealTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"); 9 model.DealWorker = this.CookieContext.UserName;10 this.YearCheckService.SaveYearCheck(model);11 12 return this.RefreshParent();13 }

 

转载于:https://www.cnblogs.com/ceccf/p/5794558.html

你可能感兴趣的文章
使用Powershell在Microsoft Azure中创建Virtual Machine
查看>>
小白Linux下安装jdk7
查看>>
linux 下安装 mysql (centos7)版本
查看>>
深入浅出裸测之道---单元测试的单元化
查看>>
【leetcode】492. Construct the Rectangle
查看>>
【leetcode】13-Roman2Integer
查看>>
【leetcode】122-Best Time to Buy and Sell Stock II
查看>>
POJ1017 【据说是贪心...】
查看>>
[ZJOI2004]嗅探器 (割点)
查看>>
聚合和继承的比较
查看>>
VxVM vxsnap ERROR V-5-1-0 Volume cannot be linked due to size/regionsize incompatibility
查看>>
【数据结构】线段树的几种用法
查看>>
小萌库 - 精品游戏精彩回顾
查看>>
spring
查看>>
C++11空指针: nullptr
查看>>
[每周一讲]我们向印度学什么?
查看>>
vs2015插件推荐 Productivity Power Tools 2015
查看>>
关于 with message 'file_get_contents(): SSL operation failed with code 的解决办法
查看>>
oracle 视图views
查看>>
如何写一个好的接口
查看>>