| | |
| | | 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); |
| | | } |
| | | } |