using System;
namespace Admin.NET.Application
{
///
/// 用户做题进度输出参数
///
public class BusCustomMapReportOutput
{
///
/// CustomId
///
public long CustomId { get; set; }
///
/// 状态
///
public int Status { get; set; }
///
/// 进度Id
///
public int Proccess { get; set; }
///
/// Sort排序
///
public int Sort { get; set; }
///
/// Id主键
///
public long Id { get; set; }
}
}