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.
39 lines
888 B
39 lines
888 B
using AutoMapper;
|
|
using System;
|
|
using Znyc.Cloudcar.Admin.Commons.Dtos;
|
|
using Znyc.Cloudcar.Admin.Security.Entitys;
|
|
|
|
namespace Znyc.Cloudcar.Admin.Security.Dtos
|
|
{
|
|
/// <summary>
|
|
/// 输入对象模型
|
|
/// </summary>
|
|
[AutoMap(typeof(AuditEntity))]
|
|
[Serializable]
|
|
public class AuditInputDto : IInputDto<long>
|
|
{
|
|
/// <summary>
|
|
/// 产品ID
|
|
/// </summary>
|
|
public long EquipmentId { 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; }
|
|
}
|
|
}
|