12 lines
283 B
C#
12 lines
283 B
C#
namespace Tnb.WarehouseMgr.Entities.Attributes
|
|
{
|
|
/// <summary>
|
|
///定时任务特性
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
|
|
public class TimedAttribute : Attribute
|
|
{
|
|
public string Name { get; set; }
|
|
}
|
|
}
|