using System;
using Abp.AutoMapper;
using Abp.Application.Services.Dto;
namespace ShwasherSys.CompanyInfo.LicenseInfo.Dto
{
///
/// 证照信息维护
///
[AutoMapTo(typeof(LicenseDocument)),AutoMapFrom(typeof(LicenseDocument))]
public class LicenseDocumentDto: EntityDto
{
///
/// 证照编码
///
public string No { get; set; }
///
/// 证照名称
///
public string Name { get; set; }
///
/// 证照描述
///
public string Description { get; set; }
///
/// 证照组
///
public string LicenseGroup { get; set; }
///
/// 证照类型
///
public string LicenseType { get; set; }
///
/// 附件路径
///
public string FilePath { get; set; }
///
/// 过期时间
///
public DateTime ExpireDate { get; set; }
}
}