通用修改业务函数代码提交

This commit is contained in:
alex
2023-06-15 11:01:52 +08:00
parent f3a280974c
commit c0e1f09388
8 changed files with 214 additions and 4 deletions

View File

@@ -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;
}
}
}