2022-10-10 焊接材料编码库导入修改及其相关联界面修改。小程序包装信息接口添加。合同劳务人员下拉框

This commit is contained in:
2022-10-10 09:56:40 +08:00
parent c1a7f0aa14
commit 00aeaac1e2
18 changed files with 260 additions and 32 deletions
@@ -0,0 +1,36 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
namespace WebAPI.Controllers
{
/// <summary>
///
/// </summary>
public class HJGLIndexController : ApiController
{
/// <summary>
/// 获取首页数据分析
/// </summary>
/// <param name="projectId"></param>
/// <returns></returns>
public Model.ResponeData GetJGLIndexItem(string projectId)
{
var responeData = new Model.ResponeData();
try
{
responeData.data = BLL.APIHJGLIndexService.GetJGLIndexItem(projectId);
}
catch (Exception ex)
{
responeData.code = 0;
responeData.message = ex.Message;
}
return responeData;
}
}
}