1234567891011121314151617181920212223 |
- using System.ComponentModel.DataAnnotations;
- namespace ProductionLineMonitor.Core.Dtos
- {
- public class RecipeCreateOrUpdateDto
- {
- [Display(Name = "机种")]
- [Required(ErrorMessage = "{0}不能为空!")]
- public string ModuleType { get; set; }
- [Display(Name = "线别")]
- [Required(ErrorMessage = "{0}不能为空!")]
- public string ProductionLineId { get; set; }
-
- public int TheoryCapacity { get; set; }
- public float TheoryTT { get; set; }
- /// <summary>
- /// 理论换料时间
- /// </summary>
- public float TheoryRefueledTime { get; set; }
- }
- }
|