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
403 B
17 lines
403 B
using Entity.DbModel.Station;
|
|
using Entity.DbModel.System.App;
|
|
using HybirdFrameworkCore.Autofac.Attribute;
|
|
using SqlSugar;
|
|
|
|
namespace Repository.Station;
|
|
|
|
[Scope]
|
|
public class BaseVehicleRepository : BaseRepository<BaseVehicle>
|
|
{
|
|
private ISqlSugarClient DbBaseClient;
|
|
|
|
public BaseVehicleRepository(ISqlSugarClient sqlSugar) : base(sqlSugar)
|
|
{
|
|
DbBaseClient = sqlSugar;
|
|
}
|
|
} |