| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using System.ComponentModel.DataAnnotations;
- using Abp.AutoMapper;
- using IwbZero.AppServiceBase;
- namespace WePlatform.WeLib.EnvironResource.Dto
- {
-
- /// <summary>
- /// 环境资源
- /// </summary>
- [AutoMapTo(typeof(EnvironResourceInfo))]
- public class EnvironResourceCreateDto:IwbEntityDto
- {
-
- /// <summary>
- /// 资源名称
- /// </summary>
- [StringLength(EnvironResourceInfo.NameLength)]
- public string ResourceName { get; set; }
- /// <summary>
- /// 资源类型
- /// </summary>
- public int ResourceType { get; set; }
- /// <summary>
- /// 资源路径
- /// </summary>
- [StringLength(EnvironResourceInfo.PathLength)]
- public string ResourcePath { get; set; }
- /// <summary>
- /// 资源描述
- /// </summary>
- [StringLength(EnvironResourceInfo.DescLength)]
- public string Description { get; set; }
- /// <summary>
- /// 消息代码
- /// </summary>
- [StringLength(EnvironResourceInfo.CodeLength)]
- public string MessageCode { get; set; }
- public string FileName { get; set; }
- public string FileExt { get; set; }
- public string FileInfo { get; set; }
- }
- }
|