EquipmentDownloadRecipeRequestDto.cs 678 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Text;
  5. namespace DllEapEntity.OFILM
  6. {
  7. /// <summary>
  8. /// 下载程序传入参数
  9. /// </summary>
  10. public class EquipmentDownloadRecipeRequestDto
  11. {
  12. /// <summary>
  13. /// 设备ID
  14. /// </summary>
  15. [Required]
  16. public string EquipmentID { get; set; }
  17. /// <summary>
  18. /// 程序名
  19. /// </summary>
  20. [Required]
  21. public string RecipeName { get; set; }
  22. /// <summary>
  23. /// 版本号
  24. /// </summary>
  25. [Required]
  26. public string Version { get; set; }
  27. }
  28. }