PDAController.cs
1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System;
using System.Collections.Generic;
using Hh.Mes.Api.Controllers;
using Hh.Mes.Common.Json;
using Hh.Mes.POJO.EnumEntitys;
using Hh.Mes.Service;
using Hh.Mes.Service.WebService.Planned;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Http.Headers;
using Microsoft.AspNetCore.Mvc;
namespace Hh.Mes.Api.Controllers
{
/// <summary>
/// pda 查询接口
/// ps:新增方法需要在SystemVariable 注册 APIList、EnumLog 新增枚举 ,方便接口日志定位查询
/// </summary>
[Route("api/[controller]/[action]")]
[ApiController]
public class PDAController : BaseController
{
//private readonly PDAService service;
//public SystemController(PDAService service, IHttpContextAccessor accessor)
//{
// service = PDAService;
// context = accessor.HttpContext;
// var sysUserApi = base.GetUser(context);
// this.service.sysUserApi = sysUserApi;
//}
/// <summary>
/// PDA物料追溯查询
/// </summary>
/// <returns></returns>
[HttpGet]
[ActionName("Mes/V1/GetMaterialByPDABarCode")]
public string GetMaterialInfoByBarCode(string barCode)
{
//var result = service.GetMaterialInfoByBarCode(barCode);
//return Serialize(result);
return "";
}
}
}