update 修改所有datetimeoffset类型为datetime

This commit is contained in:
2021-04-30 11:35:08 +08:00
parent a2589676cb
commit df2e5c51fc
29 changed files with 72 additions and 47 deletions

View File

@@ -53,7 +53,7 @@ namespace Ewide.Core
/// 生日
/// </summary>
[Comment("生日")]
public DateTimeOffset Birthday { get; set; }
public DateTime? Birthday { get; set; }
/// <summary>
/// 性别-男_1、女_2
@@ -93,7 +93,7 @@ namespace Ewide.Core
/// 最后登录时间
/// </summary>
[Comment("最后登录时间")]
public DateTimeOffset LastLoginTime { get; set; }
public DateTime LastLoginTime { get; set; }
/// <summary>
/// 管理员类型-超级管理员_1、非管理员_2