| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System;
- using System.Collections.Generic;
- using Abp.AutoMapper;
- using System.ComponentModel.DataAnnotations;
- using ContractService.CommonManager.AttachFiles;
- using ContractService.Configuration;
- using IwbZero.AppServiceBase;
- namespace ContractService.LegalContract.Contract.Dto
- {
-
- /// <summary>
- /// 合同信息
- /// </summary>
- [AutoMapTo(typeof(LegalContractInfo))]
- public class LegalContractCreateDto:IwbEntityDto
- {
-
- /// <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; }
- }
- }
|