using Edu.Common.Plugin; using Edu.Model.Entity.Customer; using System; using System.Collections.Generic; using System.Text; namespace Edu.Model.ViewModel.Customer { /// /// 同业客户任务详情扩展实体类 /// public class RB_TaskDetails_Extend : RB_TaskDetails { /// /// 任务编号【逗号分割】 /// public string QTaskIds { get; set; } /// /// 任务类型名称 /// public string TaskTypeName { get { return this.TaskType.ToName(); } } /// /// 目标值数组 /// public List TargetIdList { get { List ids = Common.ConvertHelper.StringToList(this.TargetId); return ids; } } /// /// 奖品图片数组 /// public List TaskKudoImgList { get { List list = new List(); if (!string.IsNullOrEmpty(this.TaskKudoImg)) { list = JsonHelper.DeserializeObject>(this.TaskKudoImg); } return list; } } /// /// 目标列表 /// public List TargetList { get; set; } } }