GroupPortraitDto.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using Abp.Application.Services.Dto;
  6. using Abp.AutoMapper;
  7. using IwbZero.ToolCommon.StringModel;
  8. using Newtonsoft.Json;
  9. using WeApp.Configuration.Cache;
  10. using WeApp.TrainingCamp;
  11. using WeEngine.Packages;
  12. namespace WeApp.TrainingPortrait.Dto
  13. {
  14. /// <summary>
  15. /// 培训营分组画像
  16. /// </summary>
  17. [AutoMapTo(typeof(GroupPortraitInfo)),AutoMapFrom(typeof(GroupPortraitInfo))]
  18. public class GroupPortraitDto : EntityDto<string>
  19. {
  20. public string CampNo { get; set; }
  21. public string GroupNo { get; set; }
  22. public int SceneCount { get; set; }
  23. public int RoleCount { get; set; }
  24. public int CmdCount { get; set; }
  25. public string SceneRemark { get; set; }
  26. public string SiGongRemark { get; set; }
  27. public string WuLiRemark { get; set; }
  28. public string ShortRemark { get; set; }
  29. public string ZhuanJiaRemark { get; set; }
  30. public string SceneInfos { get; set; }
  31. public string TrainingInfos { get; set; }
  32. public string RoleCmdInfos { get; set; }
  33. public string RoundScoreInfos { get; set; }
  34. public string SiGongInfos { get; set; }
  35. public string WuLiInfos { get; set; }
  36. public string GroupName { get; set; }
  37. public DateTime? StartDate { get; set; }
  38. public DateTime? EngDate { get; set; }
  39. public decimal TrainingMinute { get; set; }
  40. public string CampName { get; set; }
  41. }
  42. public class RoundRoleCmdDto
  43. {
  44. public int RoundIndex { get; set; }
  45. public List<RoleCmdDto> RoleCmdInfos { get; set; }
  46. }
  47. public class RoleCmdDto
  48. {
  49. public string RoleName { get; set; }
  50. public List<string> CmdInfo { get; set; }
  51. }
  52. public class RoundSceneDto
  53. {
  54. public int RoundIndex { get; set; }
  55. public List<SceneDto> SceneInfos { get; set; }
  56. }
  57. }