79 lines
2.2 KiB
C#
79 lines
2.2 KiB
C#
using System;
|
|
|
|
namespace CRM.Core.Model.QueryModels
|
|
{
|
|
public class Hg_Wx_Message_Query
|
|
{
|
|
public int? id { get; set; }
|
|
public DateTime? stime { get; set; }
|
|
public DateTime? etime { get; set; }
|
|
public string keyword { get; set; }
|
|
public string kefuusername { get; set; }
|
|
public string jobusername { get; set; }
|
|
//部门
|
|
public string deptcodes { get; set; }
|
|
public int? hgstatus { get; set; }
|
|
|
|
public int? iswg { get; set; }
|
|
|
|
}
|
|
public class Hg_Qw_Message_Query
|
|
{
|
|
public int? id { get; set; }
|
|
public DateTime? stime { get; set; }
|
|
public DateTime? etime { get; set; }
|
|
public string keyword { get; set; }
|
|
public string kehuuserid { get; set; }
|
|
public string jbouserid { get; set; }
|
|
//部门
|
|
public string deptcodes { get; set; }
|
|
public int? hgstatus { get; set; }
|
|
|
|
public int? iswg { get; set; }
|
|
/// <summary>
|
|
/// 企业微信企业ID
|
|
/// </summary>
|
|
public string corpid { get; set; }
|
|
}
|
|
|
|
public class Hg_ReCord_Query
|
|
{
|
|
public int? id { get; set; }
|
|
public DateTime? stime { get; set; }
|
|
public DateTime? etime { get; set; }
|
|
public string keyword { get; set; }
|
|
public string customername { get; set; }
|
|
public int? eid { get; set; }
|
|
public string resid { get; set; }
|
|
//部门
|
|
public string deptcodes { get; set; }
|
|
public int? hgstatus { get; set; }
|
|
public int? iswg { get; set; }
|
|
}
|
|
|
|
public class Hg_Violation_Query
|
|
{
|
|
public DateTime? stime { get; set; }
|
|
public DateTime? etime { get; set; }
|
|
public string keyword { get; set; }
|
|
/// <summary>
|
|
/// 客服
|
|
/// </summary>
|
|
public string fromuser { get; set; }
|
|
|
|
//客户
|
|
public string touser { get; set; }
|
|
public int? eid { get; set; }
|
|
//部门
|
|
public string deptcodes { get; set; }
|
|
public int? iswg { get; set; }
|
|
public string type { get; set; }
|
|
|
|
public string hgtype { get; set; }
|
|
public string hgsubtype { get; set; }
|
|
|
|
}
|
|
|
|
|
|
}
|