using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Web;
|
|
namespace VueWebApi.Tools
|
{
|
public class ExcelList
|
{
|
public static List<ScoreReport> ExcelData()
|
{
|
|
List<ScoreReport> list = new List<ScoreReport>
|
{
|
new ScoreReport("1","角色清单"),
|
new ScoreReport("2","用户清单"),
|
new ScoreReport("3","工位清单"),
|
new ScoreReport("4","往来单位"),
|
new ScoreReport("6","仓库库位清单"),
|
new ScoreReport("7","容器定义"),
|
new ScoreReport("8","存货档案"),
|
new ScoreReport("9","设备清单"),
|
new ScoreReport("10","设备点检项目"),
|
new ScoreReport("22","设备点检标准"),
|
new ScoreReport("11","设备保养项目"),
|
new ScoreReport("23","设备保养标准"),
|
new ScoreReport("12","工装清单"),
|
new ScoreReport("13","工装点检"),
|
new ScoreReport("14","工装保养"),
|
new ScoreReport("15","工序定义"),
|
new ScoreReport("16","工艺路线"),
|
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; }
|
}
|
}
|