6 changed files with 116 additions and 51 deletions
-
24src/Shentun.Peis.Application.Contracts/InternalReports/GetRegistrationPersonnelWorkLoadReportDto.cs
-
24src/Shentun.Peis.Application.Contracts/InternalReports/GetRegistrationPersonnelWorkLoadReportRequestDto.cs
-
44src/Shentun.Peis.Application/InternalReports/InternalReportAppService.cs
-
71src/Shentun.Peis.Application/OrganizationUnits/OrganizationUnitsAppService.cs
-
1src/Shentun.Peis.Application/RegisterAsbitems/RegisterAsbitemAppService.cs
-
3src/Shentun.Peis.Domain/AsbitemGuides/AsbitemGuideManager.cs
@ -0,0 +1,24 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.InternalReports |
|||
{ |
|||
public class GetRegistrationPersonnelWorkLoadReportDto |
|||
{ |
|||
/// <summary>
|
|||
/// 人员名称
|
|||
/// </summary>
|
|||
public string PersonnelName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 登记数量
|
|||
/// </summary>
|
|||
public int RegisterCount { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 占百分比
|
|||
/// </summary>
|
|||
public string Percentage { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,24 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.InternalReports |
|||
{ |
|||
public class GetRegistrationPersonnelWorkLoadReportRequestDto |
|||
{ |
|||
/// <summary>
|
|||
/// 登记人员ID 集合
|
|||
/// </summary>
|
|||
public List<Guid> UserIds { get; set;} |
|||
|
|||
/// <summary>
|
|||
/// 开始登记日期
|
|||
/// </summary>
|
|||
public string StartDate { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 结束登记日期
|
|||
/// </summary>
|
|||
public string EndDate { get; set; } |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue