using System; using System.Collections.Generic; using System.Text; using Edu.Model.Entity.User; namespace Edu.Model.ViewModel.User { /// <summary> /// 学员事件记录扩展实体 /// </summary> public class RB_Student_EventLog_ViewModel : RB_Student_EventLog { /// <summary> /// 事件图片 /// </summary> public List<string> EventPicList { get; set; } /// <summary> /// 创建人 /// </summary> public string CreateByName { get; set; } /// <summary> /// 更新人 /// </summary> public string UpdateByName { get; set; } } }