添加用户性别字段

This commit is contained in:
陈淳
2022-09-16 19:18:24 +08:00
parent c63f9de5c5
commit 9618bd891f
4 changed files with 6 additions and 2 deletions

View File

@@ -123,5 +123,10 @@ namespace Yi.Framework.Model.Models
///</summary>
[SugarColumn(ColumnName="DeptId" )]
public long? DeptId { get; set; }
/// <summary>
/// 性别
///</summary>
[SugarColumn(ColumnName="Sex" )]
public int? Sex { get; set; }
}
}