PerformanceDto.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. namespace ShwasherSys.CompanyInfo.Performance.Dto
  5. {
  6. [AutoMapTo(typeof(EmployeeWorkPerformance)),AutoMapFrom(typeof(EmployeeWorkPerformance))]
  7. public class PerformanceDto: EntityDto<int>
  8. {
  9. /// <summary>
  10. /// 编号
  11. /// </summary>
  12. public string PerformanceNo { get; set; }
  13. /// <summary>
  14. /// 员工Id
  15. /// </summary>
  16. public int EmployeeId { get; set; }
  17. /// <summary>
  18. /// 关联编号
  19. /// </summary>
  20. public string RelatedNo { get; set; }
  21. /// <summary>
  22. /// 排产单号
  23. /// </summary>
  24. public string ProductOrderNo { get; set; }
  25. /// <summary>
  26. /// 工作类型
  27. /// </summary>
  28. public int WorkType { get; set; }
  29. /// <summary>
  30. /// 绩效量化
  31. /// </summary>
  32. public decimal Performance { get; set; }
  33. /// <summary>
  34. /// 量化单位
  35. /// </summary>
  36. public string PerformanceUnit { get; set; }
  37. /// <summary>
  38. /// 绩效描述
  39. /// </summary>
  40. public string PerformanceDesc { get; set; }
  41. public string EmployeeNo { get; set; }
  42. public string EmployeeName { get; set; }
  43. public DateTime CreationTime { get; set; }
  44. }
  45. }