通用修改业务函数代码提交
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user