using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.MiManager.Response
{
public class PunchStatistics
{
public long UserId { get; set; }
///
/// 组织架构名
///
public string OrgName { get; set; }
///
/// 用户名
///
public string UserName { get; set; }
///
/// 巡查日期范围
///
public string PunchScope { get; set; }
///
/// 巡查次数
///
public int PunchCount { get; set; }
///
/// 上报异常次数
///
public int ReportCount { get; set; }
///
/// 处理次数
///
public int DealCount { get; set; }
}
public class UserInfo
{
public long Id { get; set; }
public string Name { get; set; }
public string OrgName { get; set; }
}
public class Point
{
public string Id { get; set; }
///
/// Desc:监管点名称
/// Default:
/// Nullable:True
///
public string Name { get; set; }
///
/// Desc:县区名称
/// Default:
/// Nullable:True
///
public string CountyName { get; set; }
///
/// Desc:街镇名称
/// Default:
/// Nullable:True
///
public string StreetName { get; set; }
///
/// Desc:村名
/// Default:
/// Nullable:True
///
public string CommunityName { get; set; }
}
public class PunchPointStatistics
{
public string PointId { get; set; }
public string Name { get; set; }
///
/// Desc:县区名称
/// Default:
/// Nullable:True
///
public string CountyName { get; set; }
///
/// Desc:街镇名称
/// Default:
/// Nullable:True
///
public string StreetName { get; set; }
///
/// Desc:村名
/// Default:
/// Nullable:True
///
public string CommunityName { get; set; }
///
/// 巡查日期范围
///
public string PunchScope { get; set; }
///
/// 巡查次数
///
public int PunchCount { get; set; }
///
/// 上报异常次数
///
public int ReportCount { get; set; }
///
/// 处理次数
///
public int DealCount { get; set; }
}
}