using System; using Abp.AutoMapper; using Abp.Application.Services.Dto; namespace ShwasherSys.CompanyInfo.Performance.Dto { [AutoMapTo(typeof(EmployeeWorkPerformance)),AutoMapFrom(typeof(EmployeeWorkPerformance))] public class PerformanceDto: EntityDto { /// /// 编号 /// public string PerformanceNo { get; set; } /// /// 员工Id /// public int EmployeeId { get; set; } /// /// 关联编号 /// public string RelatedNo { get; set; } /// /// 排产单号 /// public string ProductOrderNo { get; set; } /// /// 工作类型 /// public int WorkType { get; set; } /// /// 绩效量化 /// public decimal Performance { get; set; } /// /// 量化单位 /// public string PerformanceUnit { get; set; } /// /// 绩效描述 /// public string PerformanceDesc { get; set; } public string EmployeeNo { get; set; } public string EmployeeName { get; set; } public DateTime CreationTime { get; set; } } }