Files
IOT_API/Model/Dto/Asset/EquipmentStatusChangeDto.cs
T

26 lines
608 B
C#
Raw 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.
using Model.Entity.Asset;
namespace Model.Dto.Asset
{
/// <summary>
/// 设备状态变更请求 DTOPOST api/asset/equipment/{id}/status 入参)
/// </summary>
public class EquipmentStatusChangeDto
{
/// <summary>
/// 目标状态(必填)
/// </summary>
public EquipmentStatusEnum Status { get; set; }
/// <summary>
/// 操作人
/// </summary>
public string? Operator { get; set; }
/// <summary>
/// 变更原因/备注
/// </summary>
public string? Remark { get; set; }
}
}