46 lines
825 B
C#
46 lines
825 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MyCode.Project.Domain.Message.Response.Common
|
|||
|
{
|
|||
|
public class QueueProcess
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 要执行的路径
|
|||
|
/// </summary>
|
|||
|
public string TypePath
|
|||
|
{
|
|||
|
get;
|
|||
|
set;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 方法名
|
|||
|
/// </summary>
|
|||
|
public string MethodName
|
|||
|
{
|
|||
|
get; set;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 参数
|
|||
|
/// </summary>
|
|||
|
public string Parameter
|
|||
|
{
|
|||
|
get;
|
|||
|
set;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 创建时间
|
|||
|
/// </summary>
|
|||
|
public DateTime CreateTime
|
|||
|
{
|
|||
|
get; set;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|