using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEAWCS_Core;
|
using WIDESEAWCS_Core.BaseRepository;
|
using WIDESEAWCS_Core.BaseServices;
|
using WIDESEAWCS_DTO.BasicInfo;
|
using WIDESEAWCS_Model.Models;
|
|
namespace WIDESEAWCS_BasicInfoService
|
{
|
public interface IBoxingDetailService : IService<Dt_BoxingDetail>
|
{
|
public IRepository<Dt_BoxingDetail> Repository { get; }
|
|
public bool CheckComponentsMatchExactly(List<string> boxingDetails, List<string> formulaDetails);
|
|
//添加组盘信息
|
public WebResponseContent SaveToolingBoardNo(ToolingBoardSubmitDto toolingBoardSubmitDto);
|
//获取成品编号和零件
|
public WebResponseContent GetProductAndPartsByBoardNo(string palletCode);
|
}
|
}
|