123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.PersonnelModule
- {
- public class TreeNode
- {
- public int Id { get; set; }
- public string Name { get; set; }
-
-
-
- public decimal AssessmentProportion { get; set; }
-
-
-
- public string AssessmentStandard { get; set; }
-
-
-
- public int ParentId { get; set; }
-
-
-
- public int AssessmentSettingId { get; set; }
-
-
-
- public decimal AssessmentProportionChi { get; set; }
-
-
-
- public string TargetValue { get; set; }
-
-
-
- public int JobId { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public int Fixed { get; set; }
- public List<TreeNode> Children { get; set; }
- public decimal AssessmentProportion_Percentage { get; set; }
-
-
-
- public DateTime YearMonth { get; set; }
-
-
-
- public int Status { get; set; }
-
-
-
- public decimal SelfAssessment { get; set; }
-
-
-
- public decimal HigherUpAssessment { get; set; }
-
-
-
- public decimal Score { get; set; }
-
-
-
- public decimal ScoreTotal { get; set; }
-
-
-
- public int HigherUpConfig { get; set; }
-
-
-
- public int HigherUpUserId { get; set; }
-
-
-
-
- }
- public class PerAssessmentSettingOperationDto
- {
- public string Name { get; set; }
- public decimal AssessmentProportion { get; set; }
- public string AssessmentStandard { get; set; }
- public int ParentId { get; set; }
- public int Id { get; set; }
- public int CreateId { get; set; }
- public string Remark { get; set; }
- }
- public class AssessmentSettingOperationContenDto
- {
- public int Id { get; set; }
- public int CreateUserId { get; set; }
-
-
-
- public int AssessmentSettingId { get; set; }
-
-
-
- public decimal AssessmentProportionChi { get; set; }
-
-
-
- public string TargetValue { get; set; }
-
-
-
- public int JobId { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public int Fixed { get; set; }
- public string Remark { get; set; }
- }
- public class QueryAssessmentSettingListOffsetAsyncDto
- {
- public int pageIndex { get; set; }
-
- public int pageSize { get; set; }
- public string SearchValue { get; set; }
- }
- public class QueryAssessmentByUser
- {
- public int UserId { get; set; }
- public DateTime Start { get; set; }
- public DateTime End { get; set; }
- }
- }
|