using Business.Core.Attributes; using Business.Model; using Microsoft.EntityFrameworkCore; using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace Bussiness.Model.SystemData { /// /// 员工岗位关联表 /// [Comment("员工岗位关联表")] [CollectionName("dopbase", "sys_post_staff")] public class sys_post_staff: BaseEntity { ///// ///// 主键id ///// //[Key] //[Comment("主键id")] //public long id { get; set; } /// /// 员工id /// [Comment("员工id")] public long? staff_id { get; set; } /// /// 岗位id /// [Comment("岗位id")] public long? post_id { get; set; } } }