using System;
using System.Collections.Generic;
using System.Text;
using Edu.Model.Entity.Duty;
namespace Edu.Model.ViewModel.Duty
{
///
/// 值班设置实体扩展类
///
public class RB_Duty_Config_ViewModel : RB_Duty_Config
{
///
/// 学校名称
///
public string SchoolName { get; set; }
///
/// 创建人
///
public string CreateByName { get; set; }
///
/// 班次
///
public string ShiftsName { get; set; }
///
/// 值班人员名称
///
public string EmployeeName { get; set; }
///
/// 抄送人员
///
public string SendName { get; set; }
///
/// 管理员列表
///
public List EmployeeIdList
{
get
{
return Common.ConvertHelper.StringToList(this.EmployeeIds);
}
}
///
/// 抄送人员列表
///
public List SendEmployeeIdList
{
get { return Common.ConvertHelper.StringToList(this.SendEmployeeIds); }
}
}
}