parent
5fc0ef3e16
commit
701daed9fe
@ -0,0 +1,20 @@
|
||||
using Entity.DbModel.Station;
|
||||
using HybirdFrameworkCore.Autofac.Attribute;
|
||||
using SqlSugar;
|
||||
|
||||
namespace Repository.Station;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[Scope("SingleInstance")]
|
||||
public class ElecPriceModelVersionDetailRepository : BaseRepository<ElecPriceModelVersionDetail>
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <param name="sqlSugar"></param>
|
||||
public ElecPriceModelVersionDetailRepository(ISqlSugarClient sqlSugar) : base(sqlSugar)
|
||||
{
|
||||
}
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
using Entity.DbModel.Station;
|
||||
using HybirdFrameworkCore.Autofac.Attribute;
|
||||
using SqlSugar;
|
||||
|
||||
namespace Repository.Station;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[Scope("SingleInstance")]
|
||||
public class ElecPriceModelVersionRepository : BaseRepository<ElecPriceModelVersion>
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <param name="sqlSugar"></param>
|
||||
public ElecPriceModelVersionRepository(ISqlSugarClient sqlSugar) : base(sqlSugar)
|
||||
{
|
||||
}
|
||||
}
|
Loading…
Reference in new issue