using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.NET.Core
{
///
/// 用户做题进度
///
[SugarTable("bus_custommap_report", "用户做题进度")]
public class BusCustomMapReport : DEntitySortBase
{
///
/// CustomId
///
[SugarColumn(ColumnDescription = "CustomId")]
public long CustomId { get; set; }
///
/// 状态
///
[SugarColumn(ColumnDescription = "状态")]
public int Status { get; set; }
///
///
///
[SugarColumn(ColumnDescription = "进度Id")]
public int Proccess { get; set; }
public long HId { get; set; }
public long MId { get; set; }
public long NId { get; set; }
public long JId { get; set; }
}
}