using SqlSugar;
using System;
using System.Linq;
using System.Text;
namespace Txgy.RBS.DbModel.Models
{
///
///
///
public partial class station_file
{
public station_file()
{
}
///
/// Desc:
/// Default:
/// Nullable:True
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
///
/// Desc:
/// Default:
/// Nullable:False
///
public int project_id { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string file_name { get; set; }
}
}