using Tiger.Model;
|
using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq.Expressions;
|
using System.Text;
|
using System.Threading.Tasks;
|
using Rhea.Common;
|
using System.Net;
|
using System.Linq;
|
using Newtonsoft.Json;
|
using Tiger.IBusiness;
|
using static Tiger.Business.Biz;
|
using Microsoft.AspNetCore.Http;
|
|
namespace Tiger.Business
|
{
|
public partial class Biz
|
{
|
/// <summary>
|
/// 工具管理
|
/// </summary>
|
public partial class SmtTool : ISmtTool
|
{
|
/// <summary>
|
/// 获取未上料列表
|
/// </summary>
|
/// <param name="itemCode"></param>
|
/// <param name="lineCode"></param>
|
/// <param name="pcbSurface"></param>
|
/// <param name="moCode"></param>
|
/// <param name="machineCode"></param>
|
/// <returns></returns>
|
/// <exception cref="NotImplementedException"></exception>
|
public Task<ApiAction<SMT_PROD_TABLE>> GetNotLoadingMaterial(string itemCode, string lineCode, string pcbSurface, string moCode, string machineCode = null)
|
{
|
throw new NotImplementedException();
|
}
|
}
|
}
|
}
|