using System; using Abp.AutoMapper; using Abp.Application.Services.Dto; namespace WePlatform.WeLib.Scene.Dto { /// /// 情景库管理 /// [AutoMapTo(typeof(SceneInfo)),AutoMapFrom(typeof(SceneInfo))] public class SceneDto: EntityDto { /// /// 情景名称 /// public string Name { get; set; } /// /// 场景类别 /// public string SceneCategory { get; set; } /// /// 场景类别 /// public string SceneCategoryName { get; set; } /// /// 情景标签 /// public string SceneTag { get; set; } /// /// 情景描述 /// public string Description { get; set; } /// /// 情景类型 /// public int SceneType { get; set; } /// /// 情景变量 /// public string Variable { get; set; } public string GuideNos { get; set; } public string GuideNames { get; set; } } }