forked from ddrilling/AsbCloudServer
27 lines
891 B
C#
27 lines
891 B
C#
|
using System;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|||
|
namespace AsbCloudApp.Requests;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Запрос для получения РТК план
|
|||
|
/// </summary>
|
|||
|
public class ProcessMapPlanBaseRequest: ChangeLogBaseRequest
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Идентификатор скважины
|
|||
|
/// </summary>
|
|||
|
[Range(1, int.MaxValue, ErrorMessage = "Id скважины - положительное число")]
|
|||
|
public int IdWell { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Тип секции
|
|||
|
/// </summary>
|
|||
|
[Range(1, int.MaxValue, ErrorMessage = "Id секции - положительное число")]
|
|||
|
public int? IdWellSectionType { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Вернуть данные, которые поменялись с указанной даты
|
|||
|
/// </summary>
|
|||
|
public DateTimeOffset? UpdateFrom { get; set; }
|
|||
|
}
|