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.
 
 

42 lines
936 B

using System;
namespace Znyc.Cloudcar.Admin.Security.Dtos
{
/// <summary>
/// 输出对象模型
/// </summary>
[Serializable]
public class AuditOutputDto
{
/// <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; }
}
}