using System;
using Abp.AutoMapper;
using Abp.Application.Services.Dto;
using AutoMapper.Configuration.Annotations;
namespace WePlatform.WeLib.Package.Dto
{
///
/// 演练方案包策划
///
[AutoMapTo(typeof(PackageInfo)),AutoMapFrom(typeof(PackageInfo))]
public class PackageDto: EntityDto
{
///
/// 方案包名称
///
public string PackageName { get; set; }
///
/// 场景类别
///
public string SceneCategory { get; set; }
///
/// 类别名称
///
public string SceneCategoryName { get; set; }
///
/// 推演模型
///
public string EngineModelNo { get; set; }
///
/// 评估模型
///
public string EvalModelNo { get; set; }
///
/// 总策划
///
public string MasterPlanner { get; set; }
///
/// 策划人员
///
public string Planner { get; set; }
///
/// 配置信息
///
public string ContentInfo { get; set; }
///
/// 方案包状态
///
public int PackageState { get; set; }
///
/// 方案包变量
///
public string Variable { get; set; }
///
/// 事务组件
///
public string ComponentInfo { get; set; }
public string AssessRoleNames { get; set; }
public string AssessRoleNos { get; set; }
public bool AssessAuto { get; set; }
[Ignore]
public string EngineModelName { get; set; }
[Ignore]
public int EngineModelType { get; set; }
///
/// 详情描述
///
public string Description { get; set; }
}
}