using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIP_Models
{
///
/// 中止和继续任务参数类
///
public class StopContinuteTaskParam
{
///
/// 任务ID(任务ID必须要传递过来)
///
public string taskNo { get; set; }
///
/// 原因
///
public string remark { get; set; }
}
}