forked from ddrilling/AsbCloudServer
Фиксы
This commit is contained in:
parent
23e8615e8a
commit
491d9d4abe
@ -163,12 +163,12 @@ public class DetectedOperationExportService
|
|||||||
{
|
{
|
||||||
DateTime = d.DateTime,
|
DateTime = d.DateTime,
|
||||||
IdUser = d.IdUser,
|
IdUser = d.IdUser,
|
||||||
WellDepth = d.WellDepth ?? float.NaN,
|
WellDepth = d.WellDepth,
|
||||||
Pressure = d.Pressure ?? float.NaN,
|
Pressure = d.Pressure,
|
||||||
HookWeight = d.HookWeight ?? float.NaN,
|
HookWeight = d.HookWeight,
|
||||||
BlockPosition = d.BlockPosition ?? float.NaN,
|
BlockPosition = d.BlockPosition,
|
||||||
BitDepth = d.BitDepth ?? float.NaN,
|
BitDepth = d.BitDepth,
|
||||||
RotorSpeed = d.RotorSpeed ?? float.NaN,
|
RotorSpeed = d.RotorSpeed,
|
||||||
})
|
})
|
||||||
.OrderBy(d => d.DateTime);
|
.OrderBy(d => d.DateTime);
|
||||||
|
|
||||||
|
@ -123,6 +123,7 @@ namespace AsbCloudWebApi.Controllers.SAUB
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="idWell">id скважины</param>
|
/// <param name="idWell">id скважины</param>
|
||||||
/// <param name="idDomain">Идентификатор домена</param>
|
/// <param name="idDomain">Идентификатор домена</param>
|
||||||
|
/// <param name="token"></param>
|
||||||
[HttpGet("export")]
|
[HttpGet("export")]
|
||||||
[Permission]
|
[Permission]
|
||||||
[ProducesResponseType(typeof(PhysicalFileResult), (int)System.Net.HttpStatusCode.OK, "application/octet-stream")]
|
[ProducesResponseType(typeof(PhysicalFileResult), (int)System.Net.HttpStatusCode.OK, "application/octet-stream")]
|
||||||
|
Loading…
Reference in New Issue
Block a user