CaseNoteDto.cs 891 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.ComponentModel.DataAnnotations;
  3. using Abp.Application.Services.Dto;
  4. using Abp.AutoMapper;
  5. using ContractService.Configuration;
  6. namespace ContractService.LegalCase.Dto
  7. {
  8. [AutoMapFrom(typeof(LegalCaseNoteInfo)),AutoMapTo(typeof(LegalCaseNoteInfo))]
  9. public class CaseNoteDto : EntityDto<long>
  10. {
  11. /// <summary>
  12. /// 项目信息
  13. /// </summary>
  14. [MaxLength(IwbConsts.PrimaryKey)]
  15. public string CaseNo { get; set; }
  16. public string CaseName { get; set; }
  17. /// <summary>
  18. /// 内容信息
  19. /// </summary>
  20. [MaxLength(1000)]
  21. public string NoteContent { get; set; }
  22. public DateTime CreationTime { get; set; }
  23. public string UserRealName { get; set; }
  24. public string UserImage { get; set; }
  25. public int NoteType { get; set; }
  26. }
  27. }