| 1234567891011121314151617181920212223242526272829303132333435 |
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using Abp.Domain.Entities.Auditing;
- using WeApp.Authorization.Users;
- namespace WeApp.BasicInfo
- {
- [Table("Bs_PhoneQuestions")]
- public class PhoneQuestionInfo : FullAuditedEntity<string, User>
- {
- public const int NameMaxLength = 50;
- public const int TagMaxLength = 200;
- public const int ContentMaxLength = 200;
- /// <summary>
- /// 简称
- /// </summary>
- [MaxLength(NameMaxLength)]
- public string Name { get; set; }
- /// <summary>
- /// 内容
- /// </summary>
- [MaxLength(ContentMaxLength)]
- public string Content { get; set; }
- public int Type { get; set; }
- /// <summary>
- /// 内容
- /// </summary>
- [MaxLength(TagMaxLength)]
- public string Tag { get; set; }
- }
- }
|