using System; namespace Edu.Model.ViewModel.User { /// /// Rb_employee Entity Model /// [Serializable] public class RB_Employee_Extend : RB_Employee { /// /// op提成 被驳回的订单 /// public string IsFinanceRejectOrder { get; set; } /// /// op提成 是否由财务单据被驳回 1是 其他否 /// public int? IsFinanceReject { get; set; } /// /// op提成 未收齐款的订单 /// public string IsNotCollectOrder { get; set; } /// /// op提成 是否未收齐款 1是 其他否 /// public int? IsNotCollectMoney { get; set; } /// /// 有效的离职月份 /// public string LeaveMonth { get; set; } /// /// 是否是部门负责人 1是 /// public int? IsDepartmentManager { get; set; } /// /// 人员id /// public string EmployeeIds { get; set; } /// /// 集团名称 /// public string GroupName { get; set; } /// /// 公司id /// public int CompanyId { get; set; } /// /// 公司id /// public int? BranchId { get; set; } /// ///多个部门id /// public string DepartmentIds { get; set; } /// /// 公司名称 /// public string CompanyName { get; set; } /// /// 部门名称 /// public string DepartmentName { get; set; } /// /// 职务名称 /// public string PostName { get; set; } /// /// 三方映射账号 /// public string OpenAccount { get; set; } /// /// 部门名称Id /// public string DepartmentID { get; set; } /// /// 里程 /// public double distance { get; set; } /// /// 【查询使用】 /// public string EndDate { get; set; } /// ///【查询使用】 /// public string StartDate { get; set; } /// /// 是否应用分区 1是 2否 /// public int? IsUseSubarea { get; set; } /// /// 部门及下级ids /// public string Departments { get; set; } /// /// 岗位ids 2019-05-16 Add By:w /// public string PostIds { get; set; } /// /// 领队/导游id /// public int LeaderId { get; set; } /// ///周冠军次数 /// public int WeekChampion { get; set; } /// /// 综合得分 /// public int SumScore { get; set; } } /// /// 年假天数 /// public class AnnualModel { /// /// 请假时长 /// public string Content { get; set; } /// /// 集团 /// public int RB_Group_id { get; set; } } /// /// 查询在职销售人员实体类 /// public class Employee_Query_Sell { /// /// 员工Id /// public int EmployeeId { get; set; } /// /// 员工名称 /// public string EmName { get; set; } } }