| 123456789101112131415161718192021222324252627282930 |
- using System;
- using System.ComponentModel.DataAnnotations;
- using Abp.Application.Services.Dto;
- using Abp.AutoMapper;
- using ContractService.Configuration;
- namespace ContractService.LegalCase.Dto
- {
- [AutoMapFrom(typeof(LegalCaseNoteInfo)),AutoMapTo(typeof(LegalCaseNoteInfo))]
- public class CaseNoteDto : EntityDto<long>
- {
- /// <summary>
- /// 项目信息
- /// </summary>
- [MaxLength(IwbConsts.PrimaryKey)]
- public string CaseNo { get; set; }
- public string CaseName { get; set; }
-
- /// <summary>
- /// 内容信息
- /// </summary>
- [MaxLength(1000)]
- public string NoteContent { get; set; }
- public DateTime CreationTime { get; set; }
- public string UserRealName { get; set; }
- public string UserImage { get; set; }
- public int NoteType { get; set; }
-
- }
- }
|