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