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