| 12345678910111213141516171819202122232425262728 |
- using System.ComponentModel.DataAnnotations;
- using Abp.Application.Services.Dto;
- using Abp.AutoMapper;
- using IwbZero.Authorization.Base.SystemInfo;
- namespace WeApp.BaseSystem.Settings.Dto
- {
- [AutoMapTo(typeof(SysSetting))]
- public class SettingUpdateDto : EntityDto<long>
- {
- [Required]
- [StringLength(SysSetting.MaxNameLength)]
- public virtual string Name { get; set; }
- [StringLength(SysSetting.MaxValueLength)]
- public virtual string Value { get; set; }
- [StringLength(SysSetting.DisplayNameMaxLength)]
- public virtual string DisplayName { get; set; }
- public virtual int? Type { get; set; }
- [StringLength(SysSetting.DescriptionMaxLength)]
- public string Description { get; set; }
- [StringLength(SysSetting.RemarkMaxLength)]
- public string Remark { get; set; }
- }
- }
|