| | |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using static Microsoft.AspNetCore.Razor.Language.TagHelperMetadata; |
| | | |
| | | namespace cylsg.Model.UserModel |
| | | { |
| | |
| | | /// <summary> |
| | | /// 注册时间 |
| | | /// </summary> |
| | | [SugarColumn(ColumnDescription = "注册时间", IsNullable = true)] |
| | | public DateTime? Regtime { get; set; } |
| | | [SugarColumn(ColumnDescription = "注册时间", ColumnDataType = "nvarchar(50)", IsNullable = true)] |
| | | public string Regtime { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 联系地址 |
| | |
| | | /// </summary> |
| | | [SugarColumn(ColumnDescription = "是否可以充值,工人提现", IsNullable = true)] |
| | | public bool? IsTiXian { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 是否管理员 |
| | | /// </summary> |
| | | [SugarColumn(ColumnDescription = "是否管理员", IsNullable = true)] |
| | | public bool? IsAdmin { get; set; } |
| | | } |
| | | } |