75 lines
2.6 KiB
C#
75 lines
2.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace WX.CRM.Model.QueryMap
|
|
{
|
|
public class WxResourceReport
|
|
{
|
|
public string isdismiss { get; set; }
|
|
public string jobusername { get; set; }
|
|
public decimal inneruserid { get; set; }
|
|
public decimal eid { get; set; }
|
|
public string uname { get; set; }
|
|
public decimal gid { get; set; }
|
|
public string gname { get; set; }
|
|
public decimal tuiguang { get; set; }
|
|
public decimal nottuiguang { get; set; }
|
|
public decimal blackcount { get; set; }
|
|
public decimal PerformanceAmount { get; set; }
|
|
public decimal OrderCount { get; set; }
|
|
public decimal chenjiaoday { get; set; }
|
|
public decimal communicatemonth { get; set; }
|
|
public decimal communicateday1 { get; set; }
|
|
public decimal communicateday3 { get; set; }
|
|
public decimal communicateday6 { get; set; }
|
|
public decimal communicateday12 { get; set; }
|
|
public decimal communicateday24 { get; set; }
|
|
public decimal msgcount { get; set; }
|
|
public decimal onlinerate { get; set; }
|
|
public decimal day1 { get; set; }
|
|
public decimal day3 { get; set; }
|
|
public decimal day6 { get; set; }
|
|
public decimal day12 { get; set; }
|
|
public decimal day24 { get; set; }
|
|
public decimal validResCount { get; set; }
|
|
public decimal unvalidResCount { get; set; }
|
|
public decimal CurTimeAmount { get; set; }
|
|
public decimal useResCount { get; set; }
|
|
}
|
|
|
|
public class OrderResourceReport
|
|
{
|
|
public string sourcetag { get; set; }
|
|
public string sourcetagName { get; set; }
|
|
public DateTime sourcemonth { get; set; }
|
|
public decimal totalCount { get; set; }
|
|
public decimal totalArrivalpay { get; set; }
|
|
public decimal firstCount { get; set; }
|
|
public decimal firstArrivalpay { get; set; }
|
|
public decimal moreCount { get; set; }
|
|
public decimal moreArrivalpay { get; set; }
|
|
}
|
|
public class WxResourceDay
|
|
{
|
|
public IList<WxResourceToDay> WxResourceToDays { get; set; }
|
|
|
|
public IList<WxResourceOldDay> WxResourceOldDays { get; set; }
|
|
|
|
public class WxResourceToDay
|
|
{
|
|
public string jobusername { get; set; }
|
|
public int day1 { get; set; }
|
|
}
|
|
|
|
public class WxResourceOldDay
|
|
{
|
|
public string jobusername { get; set; }
|
|
public int day3 { get; set; }
|
|
public int day6 { get; set; }
|
|
public int day12 { get; set; }
|
|
public int day24 { get; set; }
|
|
}
|
|
}
|
|
|
|
}
|