18 lines
400 B
C#
18 lines
400 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tnb.WarehouseMgr.Entities.Attributes
|
|
{
|
|
/// <summary>
|
|
///定时任务特性
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
|
|
public class TimedAttribute : Attribute
|
|
{
|
|
public string Name { get; set; }
|
|
}
|
|
}
|