using System; using Abp.AutoMapper; using Abp.Application.Services.Dto; namespace WePlatform.WeLib.SceneFlow.Dto { /// /// 演练情景流策划 /// [AutoMapTo(typeof(SceneFlowInfo)),AutoMapFrom(typeof(SceneFlowInfo))] public class SceneFlowDto: EntityDto { /// /// 情景流名称 /// public string FlowName { get; set; } /// /// 场景类别 /// public string SceneCategory { get; set; } /// /// 类别名称 /// public string SceneCategoryName { get; set; } // /// // /// 情景流配置信息 // /// //public string ContentInfo { get; set; } /// /// 情景流状态 /// public int SceneFlowState { get; set; } /// /// 情景流变量 /// public string Variable { get; set; } public string ContentInfo { get; set; } public string ComponentInfo { get; set; } } }