using System; using SqlSugar; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace Admin.Core.Model.Sys { /// ///用户与岗位关联表实体类 /// [Table("SysUserPost")] [SugarTable("SysUserPost", "admin_sqlite")] public class SysUserPost { /// /// ID /// [Key] [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] [Required] public int ID { get; set; } /// /// 用户ID /// public int? UserID { get; set; } /// /// 岗位ID /// public int? PostID { get; set; } } }