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