招聘后台
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.
 
 

23 lines
513 B

namespace Znyc.Recruitment.Admin.Security.Dtos
{
/// <summary>
/// CallFeedback入参
/// </summary>
public class CallFeedbackInput
{
/// <summary>
/// 产品类型
/// </summary>
public int ProductType { get; set; }
/// <summary>
/// 产品Id
/// </summary>
public long ProductId { get; set; }
/// <summary>
/// 评价状态
/// </summary>
public int Status { get; set; }
}
}