using System; using System.Linq; using System.Text; using SqlSugar; namespace DocumentServiceAPI.Model.cyDocumentModel { /// /// 文档用户 /// [SugarTable("Document_UserInfo")] public partial class Document_UserInfo { /// /// Desc: 用户ID /// Default: /// Nullable: False /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int UserId { get; set; } /// /// Desc: 用户名 /// Default: /// Nullable: True /// public string UserName { get; set; } /// /// Desc: 是否经理 /// Default: 0 /// Nullable: True /// public int? IsManager { get; set; } /// /// Desc: 是否已使用 /// Default: 1 /// Nullable: True /// public int? IsUsed { get; set; } } }