| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System;
- using System.Collections.Generic;
- using Abp.AutoMapper;
- using Abp.Application.Services.Dto;
- using System.ComponentModel.DataAnnotations;
- using ContractService.CommonManager.AttachFiles;
- using ContractService.Configuration;
- namespace ContractService.LegalContract.Contract.Dto
- {
-
- /// <summary>
- /// 合同信息
- /// </summary>
- [AutoMapTo(typeof(LegalContractInfo))]
- public class LegalContractUpdateDto: EntityDto<string>
- {
-
- /// <summary>
- /// 合同编号
- /// </summary>
- [StringLength(50)]
- public string Code { get; set; }
-
- /// <summary>
- /// 合同名称
- /// </summary>
- [StringLength(50)]
- public string Name { get; set; }
-
- /// <summary>
- /// 内容信息
- /// </summary>
- public string ContentInfo { get; set; }
-
- /// <summary>
- /// 标签
- /// </summary>
- [StringLength(200)]
- public string Tags { get; set; }
-
- /// <summary>
- /// 项目信息
- /// </summary>
- [StringLength(IwbConsts.PrimaryKey)]
- public string CaseNo { get; set; }
- public List<AttachFileCreateDto> AttachFiles { get; set; }
- }
- }
|