| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- using System.ComponentModel.DataAnnotations;
- using Abp.Domain.Entities.Auditing;
- namespace IwbZero.Authorization.Base.SystemInfo
- {
- public class SysHelpBase : FullAuditedEntity<int>
- {
- public const int ClassificationMaxLength = 40;
- public const int HelpTitleMaxLength = 50;
- public const int HelpKeyWordsMaxLength = 50;
- public const int HelpContentWordsMaxLength = int.MaxValue;
- public const int RemarkMaxLength = 1000;
- /// <summary>
- /// 롸잚
- /// </summary>
- [StringLength(ClassificationMaxLength)]
- public string Classification { get; set; }
- [Required]
- [StringLength(HelpTitleMaxLength)]
- public string HelpTitle { get; set; }
- /// <summary>
- /// 밑숩俚
- /// </summary>
- [StringLength(HelpKeyWordsMaxLength)]
- public string HelpKeyWords { get; set; }
- /// <summary>
- /// 코휭
- /// </summary>
- [StringLength(HelpContentWordsMaxLength)]
- public string HelpContent { get; set; }
- /// <summary>
- /// 꽉데긍쯤(渡즛)
- /// </summary>
- [StringLength(SysFunctionBase.FunctionNoMaxLength)]
- public string FunctionNo { get; set; }
- /// <summary>
- /// 꽉데홈掘ID(渡즛)
- /// </summary>
- [StringLength(SysFunctionBase.PermissionNameMaxLength)]
- public string PermissionName { get; set; }
- public int Sequence { get; set; }
- public string Description { get; set; }
- [StringLength(RemarkMaxLength)]
- public string Remark { get; set; }
- }
- }
|