2025-11-16 15:16:51 +08:00

42 lines
926 B
C#

using System.ComponentModel.DataAnnotations;
namespace MDM.Model.Plant.Dto
{
/// <summary>
/// 车间查询对象
/// </summary>
public class PlantWorkshopQueryDto : PagerInfo
{
}
/// <summary>
/// 车间输入输出对象
/// </summary>
public class PlantWorkshopDto
{
[Required(ErrorMessage = "车间id不能为空")]
public int WorkshopId { get; set; }
public string FkSiteCode { get; set; }
[Required(ErrorMessage = "车间code不能为空")]
public string WorkshopCode { get; set; }
public string WorkshopName { get; set; }
public string Description { get; set; }
public int? Status { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}