Files
parr_api/PARR.EsppApi/Models/Query/AddMtnkQuery.cs

28 lines
724 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace PARR.EsppApi.Models.Query
{
public class AddMtnkQuery
{
/// <summary>
/// номер наряда
/// </summary>
public required string RecordId { get; set; }
/// <summary>
/// операция для списания, должна совпадать по тексту с АСУ ЕСПП
/// </summary>
public required string JobOperation { get; set; }
/// <summary>
/// время в формате чч:мм
/// </summary>
public required string Time { get; set; }
/// <summary>
/// объём работ
/// </summary>
public int Workspace { get; set; } = 1;
}
}