| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using Abp.Application.Services.Dto;
- using Abp.AutoMapper;
- using AutoMapper.Configuration.Annotations;
- using ContractService.CommonManager.AttachFiles;
- using ContractService.Configuration;
- namespace ContractService.LegalContract.Contract.Dto
- {
- [AutoMap(typeof(LegalContractNoteInfo))]
- public class ContractNoteDto : EntityDto<long>
- {
- /// <summary>
- /// 项目信息
- /// </summary>
- [MaxLength(IwbConsts.PrimaryKey)]
- public string ContractNo { get; set; }
- [Ignore]
- public string ContractName { get; set; }
- public string KeyPointNo { get; set; }
- [Ignore]
- public string KeyPointName { get; set; }
- /// <summary>
- /// 内容信息
- /// </summary>
- [MaxLength(1000)]
- public string NoteContent { get; set; }
- public DateTime? CreationTime { get; set; }
- [Ignore]
- public string UserRealName { get; set; }
- [Ignore]
- public string UserImage { get; set; }
- public int NoteType { get; set; }
- }
- [AutoMap(typeof(LegalContractSupplementInfo))]
- public class SupplementDto : EntityDto<string>
- {
- public string Code { get; set; }
- public string Name { get; set; }
- public string ContractNo { get; set; }
- public string KeyPointNo { get; set; }
- [Ignore]
- public string ContractName { get; set; }
- /// <summary>
- /// 内容信息
- /// </summary>
- public string ContentInfo { get; set; }
- public DateTime? CreationTime { get; set; }
- [Ignore]
- public List<AttachFileCreateDto> AttachFiles { get; set; }
- }
- }
|