using System; using Abp.AutoMapper; using Abp.Application.Services.Dto; using System.ComponentModel.DataAnnotations; using WePlatform.Configuration; namespace WePlatform.WeModel.Model.Dto { /// /// 推演模型管理 /// [AutoMapTo(typeof(EngineModelInfo))] public class EngineModelUpdateDto: EntityDto { /// /// 模型名称 /// [StringLength(EngineModelInfo.NameLength)] public string ModelName { get; set; } /// /// 模型版本 /// [StringLength(EngineModelInfo.NameLength)] public string Version { get; set; } /// /// 模型描述 /// [StringLength(EngineModelInfo.DescLength)] public string Description { get; set; } // /// // /// 模型类型 // /// //public int ModelType { get; set; } // /// // /// 推演引擎 // /// // [StringLength(IwbConsts.PrimaryKey)] //public string EngineNo { get; set; } } }