using Edu.Model.Entity.User; using Edu.Model.ViewModel.System; using System; using System.Collections.Generic; namespace Edu.Model.ViewModel.User { /// /// 岗位视图实体 /// [Serializable] public class RB_Post_ViewModel : RB_Post { /// /// 常见人 /// public string CreateByName { get; set; } /// /// 修改人 /// public string UpdateByName { get; set; } /// /// 创建时间字符串 /// public string CreateTimeStr { get { return Common.ConvertHelper.FormatTime(this.CreateTime); } } /// /// 更新时间字符串 /// public string UpdateTimeStr { get { return Common.ConvertHelper.FormatTime(this.UpdateTime); } } /// /// 岗位编号查询 /// public string QPostIds { get; set; } /// /// 岗位角色列表 /// public List PostRoleList { get; set; } /// /// 部门查询 /// public string QDeptIds { get; set; } /// /// 部门编号 /// public int Dept_Id { get; set; } } }