using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; 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; } } }