leiqunqing
2026-02-06 15b3879cd259108e7ebb755fe02c190f28f1e20c
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
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);
    }
}