using System; using Abp.AutoMapper; using Abp.Application.Services.Dto; namespace WePlatform.WeModel.Model.Dto { /// /// 推演模型管理 /// [AutoMapTo(typeof(EngineModelInfo)),AutoMapFrom(typeof(EngineModelInfo))] public class EngineModelDto: EntityDto { /// /// 模型名称 /// public string ModelName { get; set; } /// /// 模型版本 /// public string Version { get; set; } /// /// 模型描述 /// public string Description { get; set; } /// /// 模型类型 /// public int ModelType { get; set; } /// /// 推演引擎 /// public string EngineNo { get; set; } public string EngineName { get; set; } } }