Files
2023-11-06 19:35:59 +08:00

19 lines
467 B
C#

namespace Tnb.WarehouseMgr.Entities.Attributes
{
/// <summary>
/// 业务类型模块特性
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
public class ServiceModuleAttribute : Attribute
{
/// <summary>
/// 业务类型ID
/// </summary>
public string BizTypeId { get; set; }
public ServiceModuleAttribute(string bizTypeId)
{
this.BizTypeId = bizTypeId;
}
}
}