using System;
namespace GDZZ.Application
{
///
/// 猎头合作管理输出参数
///
public class CandidateOutput
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// 猎头ID
///
public long HeadID { get; set; }
///
/// 候选人ID
///
public long CanndidateID { get; set; }
///
/// 状态
///
public int Status { get; set; }
}
}