Files
tnb.server/WarehouseMgr/Tnb.WarehouseMgr.Entities/Attributes/ServiceModuleAttribute.cs
2023-06-15 11:01:52 +08:00

25 lines
584 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.Class)]
public class ServiceModuleAttribute : Attribute
{
/// <summary>
/// 业务类型ID
/// </summary>
public string BizTypeId { get; set; }
public ServiceModuleAttribute(string bizTypeId)
{
this.BizTypeId = bizTypeId;
}
}
}