forked from ddrilling/AsbCloudServer
Add SpinPlcVersion to TelemetryInfoDto
This commit is contained in:
parent
80fdfce467
commit
4878a8c25c
@ -12,7 +12,8 @@ namespace AsbCloudApp.Data
|
||||
public string Customer { get; set; }
|
||||
public string Deposit { get; set; }
|
||||
public string HmiVersion { get; set; }
|
||||
public string PlcVersion { get; set; }
|
||||
public string SaubPlcVersion { get; set; }
|
||||
public string SpinPlcVersion { get; set; }
|
||||
public string Comment { get; set; }
|
||||
}
|
||||
}
|
||||
|
@ -17,7 +17,6 @@ namespace AsbCloudInfrastructure.Services.WellOperationService
|
||||
private readonly IAsbCloudDbContext db;
|
||||
private readonly IWellService wellService;
|
||||
private readonly CacheTable<WellSectionType> cacheSectionsTypes;
|
||||
private readonly CacheTable<Well> cacheWell;
|
||||
private readonly CacheTable<WellType> cacheWellType;
|
||||
private readonly CacheTable<Cluster> cacheCluster;
|
||||
private const int idOperationBhaAssembly = 1025;
|
||||
@ -35,7 +34,6 @@ namespace AsbCloudInfrastructure.Services.WellOperationService
|
||||
this.db = db;
|
||||
this.wellService = wellService;
|
||||
cacheSectionsTypes = cache.GetCachedTable<WellSectionType>((DbContext)db);
|
||||
cacheWell = cache.GetCachedTable<Well>((DbContext)db);
|
||||
cacheWellType = cache.GetCachedTable<WellType>((DbContext)db);
|
||||
cacheCluster = cache.GetCachedTable<Cluster>((DbContext)db);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user