You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
848 B
C#

using SqlSugar;
using System;
using System.Linq;
using System.Text;
namespace Txgy.RBS.DbModel.Models
{
///<summary>
///
///</summary>
public class station_file
{
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(IsPrimaryKey = true)]
public int id { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
public int project_id { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string file_name { get; set; }
[Navigate(NavigateType.OneToMany, nameof(station.project_id))]
public List<station> stations { get; set; }
}
}