C产品在市场上有哪些独特优势?
- 内容介绍
- 文章标签
- 相关推荐
本文共计308个文字,预计阅读时间需要2分钟。
示例接口定义
为了方便笔者先自己写了个简单的接口用于展示,返回当前时间,具体如下
/// <summary> /// GetToday. /// </summary> /// <returns></returns> [HttpGet] [Route("GetTime/Today")] public MyDateTime GetToday() { var now = DateTime.Now; return new MyDateTime { Year = now.Year, Month = now.Month, Day = now.Day, Hour = now.Hour, Minute = now.Minute, Second = now.Second, }; }
上面的MyDateTime是展示用的自定义类,其中的属性已在return中表示。
本文共计308个文字,预计阅读时间需要2分钟。
示例接口定义
为了方便笔者先自己写了个简单的接口用于展示,返回当前时间,具体如下
/// <summary> /// GetToday. /// </summary> /// <returns></returns> [HttpGet] [Route("GetTime/Today")] public MyDateTime GetToday() { var now = DateTime.Now; return new MyDateTime { Year = now.Year, Month = now.Month, Day = now.Day, Hour = now.Hour, Minute = now.Minute, Second = now.Second, }; }
上面的MyDateTime是展示用的自定义类,其中的属性已在return中表示。

