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
{
///
/// 合同信息
///
[AutoMapTo(typeof(LegalContractInfo))]
public class LegalContractUpdateDto: EntityDto
{
///
/// 合同编号
///
[StringLength(50)]
public string Code { get; set; }
///
/// 合同名称
///
[StringLength(50)]
public string Name { get; set; }
///
/// 内容信息
///
public string ContentInfo { get; set; }
///
/// 标签
///
[StringLength(200)]
public string Tags { get; set; }
///
/// 项目信息
///
[StringLength(IwbConsts.PrimaryKey)]
public string CaseNo { get; set; }
public List AttachFiles { get; set; }
}
}