using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Threading.Tasks;
|
|
namespace VueWebCoreApi.Tools
|
{
|
public class ExcelList
|
{
|
public static List<ScoreReport> ExcelData()
|
{
|
|
List<ScoreReport> list = new List<ScoreReport>
|
{
|
//new ScoreReport("0","组织架构"),
|
new ScoreReport("1","岗位管理"),
|
new ScoreReport("2","班组管理"),
|
new ScoreReport("3","人员管理"),
|
new ScoreReport("4","角色管理"),
|
new ScoreReport("5","往来单位"),
|
//new ScoreReport("6","仓库设置"),
|
//new ScoreReport("7","库位设置"),
|
new ScoreReport("8","存货档案"),
|
new ScoreReport("9","设备清单"),
|
new ScoreReport("10","设备点检项目"),
|
new ScoreReport("10_1","设备点检标准"),
|
new ScoreReport("11","设备保养项目"),
|
new ScoreReport("11_1","设备保养标准"),
|
new ScoreReport("12","模具清单"),
|
new ScoreReport("13","模具点检项目"),
|
new ScoreReport("13_1","模具点检标准"),
|
new ScoreReport("14","模具保养项目"),
|
new ScoreReport("14_1","模具保养标准"),
|
new ScoreReport("15","工序设置"),
|
//new ScoreReport("16","工艺路线"),
|
//new ScoreReport("24","节拍工价"),
|
new ScoreReport("17","质检标准"),
|
new ScoreReport("18","缺陷定义"),
|
new ScoreReport("19","生产订单"),
|
new ScoreReport("20","库存查询"),
|
new ScoreReport("21","物料清单"),
|
};
|
return list;
|
}
|
}
|
public class ScoreReport
|
{
|
public ScoreReport(string a, string n)
|
{
|
FileCode = a;
|
FileName = n;
|
}
|
public string FileCode { get; set; }
|
public string FileName { get; set; }
|
}
|
}
|