班组修改

This commit is contained in:
qianhao.xu
2025-03-12 15:32:38 +08:00
parent 2ca013bcb5
commit d09cb93aa7
35 changed files with 3408 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
using System.ComponentModel.DataAnnotations;
namespace DOAN.Model.MES.group.Dto
{
/// <summary>
/// 排班查询对象
/// </summary>
public class GroupScheduleQueryDto : PagerInfo
{}
public class GroupScheduleQueryDto2 : PagerInfo
{
public DateTime ScheduleDate { get; set; }
}
public class GroupScheduleQueryDto3 : PagerInfo
{
public string group_schedule_id { get; set; }
public string WorkNum { get; set; }
public string Name { get; set; }
public string FkPost { get; set; }
}
/// <summary>
/// 排班输入输出对象
/// </summary>
public class GroupScheduleDto
{
public string Id { get; set; }
public DateTime ScheduleDate { get; set; }
public string GroupName { get; set; }
public string GroupCode { get; set; }
public int FkShift { get; set; }
public string ShiftName { get; set; }
public string Remark { get; set; }
public string Status { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
public decimal WorkHours { get; set; }
}
}