using System;
|
using System.Collections.Generic;
|
using System.Text;
|
/// <summary>
|
/// 日常管理模块
|
/// </summary>
|
namespace DTO
|
{
|
#region 接电话管理
|
/// <summary>
|
/// 来电管理
|
/// </summary>
|
public partial class AdmHoldPhoneDTO
|
{
|
public string Id { get; set; }
|
public DateTime InTime { get; set; }
|
public string OrderId { get; set; }
|
public string Phone { get; set; }
|
public string LineType { get; set; }
|
public string Context { get; set; }
|
public string UserId { get; set; }
|
public string Intention { get; set; }
|
public string Handling { get; set; }
|
public string RecStatus { get; set; }
|
public string Creater { get; set; }
|
public DateTime Createtime { get; set; }
|
public string Modifier { get; set; }
|
public DateTime Modifytime { get; set; }
|
public string Message { get; set; }
|
}
|
|
public partial class AdmHoldPhoneDTOSearch:SearchEntity
|
{
|
public string Createtime { get; set; }
|
public string LineType { get; set; }
|
public string Phone{ get; set; }
|
public string OrderName { set; get; }
|
public string Intention { get; set; }
|
public string Context { get; set; }
|
|
public string UserId { get; set; }
|
|
public string Creater { get; set; }
|
}
|
#endregion
|
|
#region 工作提醒
|
public partial class AdmMemoBookDTO
|
{
|
public string Id { get; set; }
|
public string Rtype { get; set; }
|
public string RtypeName { get; set; }
|
public string ToUserId { get; set; }
|
// public string toUserName { get; set; }
|
public DateTime? Time { get; set; }
|
public string TimeName { get; set; }
|
public string Context { get; set; }
|
public int HaveRead { get; set; }
|
public string HaveReadName { get; set; }
|
public string RecStatus { get; set; }
|
public string Creater { get; set; }
|
// public string CreaterName { get; set; }
|
public DateTime Createtime { get; set; }
|
public string Modifier { get; set; }
|
public DateTime Modifytime { get; set; }
|
|
public string FeedBack { get; set; }
|
|
public string WorkDept { get; set; }
|
public string KaoHe { get; set; }
|
public string KaoHeName { get; set; }
|
public string ZhuiZe { get; set; }
|
public DateTime? WanchengTime { get; set; }
|
public string WanchengTimeName { get; set; }
|
public string BanLi { get; set; }
|
public string ShenSu { get; set; }
|
public DateTime? ShenSuTime { get; set; }
|
}
|
|
public partial class AdmMemoBookDTOSearch: SearchEntity
|
{
|
|
public string Createtime { get; set; }
|
public string WorkDept { get; set; }
|
public string ToUserId { get; set; }
|
public string Rtype { get; set; }
|
|
public string HaveRead { get; set; }
|
|
public int unread { get; set; }
|
|
public string Creater { get; set; }
|
|
public string KaoHe { get; set; }
|
}
|
#endregion
|
}
|