using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace DllEapEntity.OFILM { /// /// 下载程序传入参数 /// public class EquipmentDownloadRecipeRequestDto { /// /// 设备ID /// [Required] public string EquipmentID { get; set; } /// /// 程序名 /// [Required] public string RecipeName { get; set; } /// /// 版本号 /// [Required] public string Version { get; set; } } }