LegalContractUpdateDto.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using System;
  2. using System.Collections.Generic;
  3. using Abp.AutoMapper;
  4. using Abp.Application.Services.Dto;
  5. using System.ComponentModel.DataAnnotations;
  6. using ContractService.CommonManager.AttachFiles;
  7. using ContractService.Configuration;
  8. namespace ContractService.LegalContract.Contract.Dto
  9. {
  10. /// <summary>
  11. /// 合同信息
  12. /// </summary>
  13. [AutoMapTo(typeof(LegalContractInfo))]
  14. public class LegalContractUpdateDto: EntityDto<string>
  15. {
  16. /// <summary>
  17. /// 合同编号
  18. /// </summary>
  19. [StringLength(50)]
  20. public string Code { get; set; }
  21. /// <summary>
  22. /// 合同名称
  23. /// </summary>
  24. [StringLength(50)]
  25. public string Name { get; set; }
  26. /// <summary>
  27. /// 内容信息
  28. /// </summary>
  29. public string ContentInfo { get; set; }
  30. /// <summary>
  31. /// 标签
  32. /// </summary>
  33. [StringLength(200)]
  34. public string Tags { get; set; }
  35. /// <summary>
  36. /// 项目信息
  37. /// </summary>
  38. [StringLength(IwbConsts.PrimaryKey)]
  39. public string CaseNo { get; set; }
  40. public List<AttachFileCreateDto> AttachFiles { get; set; }
  41. }
  42. }