using Business.Models; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Globalization; using System.Linq; using System.Net.NetworkInformation; using System.Numerics; using System.Reflection; using System.Text; using System.Threading.Tasks; namespace Bussiness.Model.SystemData { /// /// 员工岗位关联表 /// public class sys_post_staff: BaseEntity { /// /// 主键id /// [Key] public long id { get; set; } /// /// 员工id /// public long staff_id { get; set; } /// /// 岗位id /// public long post_id { get; set; } } }