| | |
| | | /// <summary> |
| | | /// 电话 |
| | | /// </summary> |
| | | [SugarColumn(ColumnDescription = "电话")] |
| | | [SugarColumn(ColumnDescription = "电话", ColumnDataType = "nvarchar(30)")] |
| | | public string Phone { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 名称 |
| | | /// </summary> |
| | | [SugarColumn(ColumnDescription = "名称",Length =100)] |
| | | [SugarColumn(ColumnDescription = "名称", ColumnDataType = "nvarchar(100)")] |
| | | public string name { get; set; } |
| | | /// <summary> |
| | | /// 电话号码 |
| | | /// </summary> |
| | | [SugarColumn(ColumnDescription = "电话号码", Length = 30)] |
| | | [SugarColumn(ColumnDescription = "电话号码", ColumnDataType = "nvarchar(30)")] |
| | | public string ItCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 昵称 |
| | | /// </summary> |
| | | [SugarColumn(ColumnDescription = "用户ID", Length = 100)] |
| | | public int Nickname { get; set; } |
| | | [SugarColumn(ColumnDescription = "用户ID", ColumnDataType = "nvarchar(100)")] |
| | | public string Nickname { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 密码 |
| | | /// </summary> |
| | | [SugarColumn(ColumnDescription = "密码", Length = 100)] |
| | | public int PassWord { get; set; } |
| | | [SugarColumn(ColumnDescription = "密码", ColumnDataType = "nvarchar(100)")] |
| | | public string PassWord { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 头像地址 |
| | | /// </summary> |
| | | [SugarColumn(ColumnDescription = "头像地址")] |
| | | public int Avatar { get; set; } |
| | | [SugarColumn(ColumnDescription = "头像地址", ColumnDataType = "nvarchar(500)")] |
| | | public string Avatar { get; set; } |
| | | } |
| | | } |