| 123456789101112131415161718192021222324252627282930313233 |
- using System;
- using Abp.AutoMapper;
- using Abp.Application.Services.Dto;
- using System.ComponentModel.DataAnnotations;
- namespace WePlatform.WeLib.Guide.Dto
- {
-
- /// <summary>
- /// 引导信息库管理
- /// </summary>
- [AutoMapTo(typeof(GuideInfo))]
- public class GuideUpdateDto: EntityDto<string>
- {
-
- /// <summary>
- /// 提示名称
- /// </summary>
- [StringLength(GuideInfo.NameLength)]
- public string Name { get; set; }
-
- /// <summary>
- /// 提示详情
- /// </summary>
- [StringLength(GuideInfo.DescLength)]
- public string Description { get; set; }
-
- /// <summary>
- /// 提示类型
- /// </summary>
- public int GuideType { get; set; }
- }
- }
|