班组修改

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,61 @@
using System.ComponentModel.DataAnnotations;
namespace DOAN.Model.MES.group.Dto
{
/// <summary>
/// 班次查询对象
/// </summary>
public class GroupShiftQueryDto : PagerInfo
{}
/// <summary>
/// 班次输入输出对象
/// </summary>
public class GroupShiftDto
{
[Required(ErrorMessage = "自增不能为空")]
public int Id { get; set; }
public string Name { get; set; }
public decimal WorkHours { get; set; }
public DateTime? StartTime { get; set; }
public DateTime? EndTime { get; set; }
public int? Status { get; set; }
public string Remark { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
public class GroupShiftDto2
{
[Required(ErrorMessage = "自增不能为空")]
public int Id { get; set; }
public string Name { get; set; }
public decimal WorkHours { get; set; }
public TimeSpan StartTime { get; set; }
public TimeSpan EndTime { get; set; }
public int? Status { get; set; }
public string Remark { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}