You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
413 B
17 lines
413 B
6 months ago
|
using Entity.DbModel.Station;
|
||
|
using HybirdFrameworkCore.Autofac.Attribute;
|
||
|
using SqlSugar;
|
||
|
using Entity.DbModel.System;
|
||
|
|
||
|
|
||
|
namespace Repository.Station;
|
||
|
|
||
|
[Scope("SingleInstance")]
|
||
|
public class EmeterEnergyRepository : BaseRepository<EmeterEnergy>
|
||
|
{
|
||
|
private ISqlSugarClient DbBaseClient;
|
||
|
public EmeterEnergyRepository(ISqlSugarClient sqlSugar) : base(sqlSugar)
|
||
|
{
|
||
|
DbBaseClient = sqlSugar;
|
||
|
}
|
||
|
}
|