仪表盘
版本库
文件存储
活动
搜索
登录
况洋洋
/
LW_MesService
龙巍PC后端
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
1、仓库条码重打 2、检验项目,4个导入模版更新 3、排产的优化(1.界面调大一点。2.顺序要调整。3.排产条件加上开工)
kyy
6 天以前
96faa40b29caf7ff1a42de48564dcadf7b6598de
[~kyy/LW_MesService.git]
/
WebApi
/
Gs.Toolbox
/
ApiCore
/
Common
/
Inject
/
ExposeAttribute.cs
1
2
3
4
5
6
7
8
9
10
11
namespace Gs.Toolbox.ApiCore.Common.Inject;
public class ExposeAttribute : Attribute
{
public ExposeAttribute(Type _type)
{
type = _type;
}
public Type type { get; set; }
}