using System; namespace Znyc.Recruitment.Admin.Security.Dtos { /// /// 输出对象模型 /// [Serializable] public class AuditOutputDto { /// /// 产品ID /// public long ProductId { get; set; } /// /// 产品类型 /// public long ProductType { get; set; } /// /// 产品标题 /// public string ProductTitle { get; set; } /// /// 审核人 /// public long AuditUserId { get; set; } /// /// 审核状态 /// /// public long HandleStatus { get; set; } /// /// 审核结果 /// public string Note { get; set; } } }