87 lines
3.6 KiB
C#
87 lines
3.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WX.CRM.Model.DTO
|
|
{
|
|
public class DealCustomerDto
|
|
{
|
|
public string resid { get; set; }
|
|
public string umid { get; set; }
|
|
public string cnname { get; set; }
|
|
public string amount_type_id { get; set; }
|
|
public string is_overdate { get; set; }
|
|
public string subproductids { get; set; }
|
|
public string arrivalpay_from { get; set; }
|
|
public string arrivalpay_to { get; set; }
|
|
public string arrivalpay_deptids { get; set; }
|
|
public string arrivaltotal_from { get; set; }
|
|
public string arrivaltotal_to { get; set; }
|
|
public string order_share_deptids { get; set; }
|
|
public string order_share_groupids { get; set; }
|
|
public string order_share_eids { get; set; }
|
|
public string follow_deptids { get; set; }
|
|
public string follow_groupids { get; set; }
|
|
public string follow_eids { get; set; }
|
|
public string follow_type { get; set; }
|
|
public string follow_date_from { get; set; }
|
|
public string follow_date_to { get; set; }
|
|
public string exclude_moduleids { get; set; }
|
|
public string moduleids { get; set; }
|
|
}
|
|
//public class ApiResult<T> {
|
|
// public string code { get; set; }
|
|
// public string message { get; set; }
|
|
// public T data { get; set; }
|
|
//}
|
|
public class DealCustomerPage {
|
|
public int currentPage { get; set; }
|
|
public int pageSize { get; set; }
|
|
public int total { get; set; }
|
|
public List<DealCustomerItem> listData { get; set; }
|
|
}
|
|
public class DealCustomerItem {
|
|
public string appid { get; set; }
|
|
public string appuserid { get; set; }
|
|
public string resid { get; set; }
|
|
public string umid { get; set; }
|
|
public string name { get; set; }
|
|
public string nickname { get; set; }
|
|
public int amount_type_id { get; set; }
|
|
public string amount_type { get; set; }
|
|
public int is_overdate { get; set; }
|
|
public string overdateName { get; set; }
|
|
public string enddate { get; set; }
|
|
public string subproductname { get; set; }
|
|
public int arrivalpay { get; set; }
|
|
public int sumarrivalpay { get; set; }
|
|
public string szzyorderid { get; set; }
|
|
public string share_eid_name { get; set; }
|
|
public string share_group_name { get; set; }
|
|
public string share_dept_name { get; set; }
|
|
public string last_follow_time { get; set; }
|
|
public int last_follow_groupid { get; set; }
|
|
public string last_follow_deptid { get; set; }
|
|
public string last_follow_eid { get; set; }
|
|
|
|
public string last_follow_group_name { get; set; }
|
|
public string last_follow_dept_name { get; set; }
|
|
public string last_follow_employee_name { get; set; }
|
|
public int is_follow { get; set; }
|
|
public string follow_type { get; set; }
|
|
}
|
|
public class DealCustomerStat {
|
|
public int dealCustomerTotal { get; set; }
|
|
public int followCustomerTotal { get; set; }
|
|
public string followCustomerRate { get; set; }
|
|
public int effectiveCustomerTotal { get; set; }
|
|
public int effectiveFollowCustomerTotal { get; set; }
|
|
public string effectiveFollowCustomerRate { get; set; }
|
|
public int ineffectiveCustomerTotal { get; set; }
|
|
public int ineffectiveFollowCustomerTotal { get; set; }
|
|
public string ineffectiveFollowCustomerRate { get; set; }
|
|
}
|
|
}
|