46 lines
1.0 KiB
C#
46 lines
1.0 KiB
C#
|
|
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
|
|
{
|
|
/// <summary>
|
|
/// 用户做题进度
|
|
/// </summary>
|
|
[SugarTable("bus_custommap_report", "用户做题进度")]
|
|
public class BusCustomMapReport : DEntitySortBase
|
|
{
|
|
/// <summary>
|
|
/// CustomId
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "CustomId")]
|
|
public long CustomId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "状态")]
|
|
public int Status { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[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; }
|
|
|
|
|
|
|
|
}
|
|
}
|