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 { /// /// 项目信息 /// [MaxLength(IwbConsts.PrimaryKey)] public string CaseNo { get; set; } public string CaseName { get; set; } /// /// 内容信息 /// [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; } } }