55 lines
1.0 KiB
C#
55 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCode.Project.Domain.Message.Response.Queue
|
|
{
|
|
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;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 执行过期时间,在这个时间的就不再执行了
|
|
/// </summary>
|
|
public DateTime? ExpireTime
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|