using System; using System.Collections.Generic; using System.Text; namespace Edu.Model.ViewModel.System { public class RB_Msg_Log_ViewModel : Entity.System.RB_Msg_Log { /// /// 创建时间字符串 /// public string CreateDateStr { get { return Common.ConvertHelper.FormatTime(this.CreateDate); } } /// /// 开始时间 /// public string StartDate { get; set; } /// /// 结束时间 /// public string EndDate { get; set; } public RB_Msg_Base_ViewModel MsgBase { get; set; } } }