using System; namespace CRM.Core.DTO.Res { public class SceneDto { /// /// 手机号 /// public string mobile { get; set; } public string resid { get; set; } /// /// /// public string appid { get; set; } /// /// /// public string appuserid { get; set; } /// /// 头像 /// public string headurl { get; set; } /// /// 昵称 /// public string nickname { get; set; } /// /// 直播课 /// public string scenetitle { get; set; } /// /// 直播课id /// public int scenetype { get; set; } /// /// 参加时间 /// public DateTime jointime { get; set; } /// /// 在线时长 /// public int? onlinetime { get; set; } /// /// 渠道号 /// public int? ch { get; set; } public string deptcode { get; set; } public string unionid { get; set; } } }