You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
2 years ago
|
using AutoMapper;
|
||
|
using System;
|
||
|
using Znyc.Recruitment.Admin.Commons.Dtos;
|
||
|
using Znyc.Recruitment.Admin.Security.Entitys;
|
||
|
|
||
|
namespace Znyc.Recruitment.Admin.Security.Dtos
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 输入对象模型
|
||
|
/// </summary>
|
||
|
[AutoMap(typeof(AuditEntity))]
|
||
|
[Serializable]
|
||
|
public class AuditInputDto : IInputDto<long>
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 产品ID
|
||
|
/// </summary>
|
||
|
public long ProductId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 产品类型
|
||
|
/// </summary>
|
||
|
public long ProductType { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 产品标题
|
||
|
/// </summary>
|
||
|
public string ProductTitle { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 审核人
|
||
|
/// </summary>
|
||
|
public long AuditUserId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 审核状态
|
||
|
/// </summary>
|
||
|
/// <value></value>
|
||
|
//public long HandleStatus { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 审核结果
|
||
|
/// </summary>
|
||
|
public string Note { get; set; }
|
||
|
|
||
|
public long Id { get; set; }
|
||
|
}
|
||
|
}
|