24 lines
557 B
C#
24 lines
557 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
using Dapper;
|
|
|
|
namespace Szmedi.RvKits.InfoManager
|
|
{
|
|
[Table("metro_project_properties")]
|
|
public class MetroProjectParamData : MetroBaseParamData
|
|
{
|
|
/// <summary>
|
|
/// 描述
|
|
/// </summary>
|
|
public string Description { get; set; }
|
|
/// <summary>
|
|
/// 项目
|
|
/// </summary>
|
|
public string Project { get; set; }
|
|
/// <summary>
|
|
/// 专业
|
|
/// </summary>
|
|
public string Major { get; set; }
|
|
}
|
|
}
|