| ¶Ô±ÈÐÂÎļþ |
| | |
| | | using SqlSugar; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core.DB.Models; |
| | | |
| | | namespace WIDESEA_Model.Models |
| | | { |
| | | /// <summary> |
| | | /// åå·¥ä¿¡æ¯ |
| | | /// </summary> |
| | | [SugarTable(nameof(Dt_UserInfo), "å工信æ¯")] |
| | | public class Dt_UserInfo : BaseEntity |
| | | { |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主é®")] |
| | | public int Id { get; set; } |
| | | |
| | | /// <summary> |
| | | /// åå·¥å·¥å· |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "å工工å·")] |
| | | public string Code { get; set; } |
| | | |
| | | /// <summary> |
| | | /// åå·¥å§å |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "åå·¥å§å")] |
| | | public string Name { get; set; } |
| | | |
| | | /// <summary> |
| | | /// åå·¥çµè¯ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "åå·¥çµè¯")] |
| | | public string PhoneNumber { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ç¶æ 0:ç¦ç¨ã1:å¯ç¨ï¼é»è®¤ä¸º1 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "ç¶æ")] |
| | | public int State { get; set; } |
| | | } |
| | | } |