feixian_weifajianguan/OpenAuth.App/BaseApp/Jobs/Request/ChangeJobStatusReq.cs

17 lines
382 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

namespace OpenAuth.App.Request
{
public class ChangeJobStatusReq
{
/// <summary>
/// 任务ID
/// </summary>
public string Id { get; set; }
/// <summary>
/// 改变任务状态
/// 0停止1启动任务变成正在运行
/// </summary>
public int Status { get; set; }
}
}