using Abp.Application.Services.Dto; using Abp.AutoMapper; namespace WePlatform.WeLib.EnvironResource.Dto { /// /// 环境资源 /// [AutoMapTo(typeof(EnvironResourceInfo)),AutoMapFrom(typeof(EnvironResourceInfo))] public class EnvironResourceDto: EntityDto { /// /// 资源名称 /// public string ResourceName { get; set; } /// /// 资源类型 /// public int ResourceType { get; set; } /// /// 资源路径 /// public string ResourcePath { get; set; } /// /// 资源描述 /// public string Description { get; set; } /// /// 消息代码 /// public string MessageCode { get; set; } } }