获取员工绩效列表

This commit is contained in:
qianhao.xu
2025-02-18 20:20:31 +08:00
parent ae4920531c
commit 54ee03de40
5 changed files with 249 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Model.MES.Group.Dto
{
public class AchievementQueryDto
{
public DateTime[] JobDatetime { get; set; }
public string Worker { get; set; }
}
}