38 lines
832 B
C#
38 lines
832 B
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
|
|
{
|
|
[SugarTable("bus_customemap_filereport", "用户报告")]
|
|
public class BusCustomeMapReports: DEntitySortBase
|
|
{
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "学生Id")]
|
|
public Guid StudentId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "量表类型")]
|
|
public int ScType { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 文件地址
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "量表地址", Length = 600)]
|
|
public string FileUrl { get; set; }
|
|
|
|
|
|
}
|
|
}
|