| | |
| | | package com.jcdm.main.da.passingStationCollection.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.jcdm.main.da.passingStationCollection.domain.DaPassingStationCollection; |
| | | |
| | | import java.util.List; |
| | |
| | | * @author yyt |
| | | * @date 2023-12-12 |
| | | */ |
| | | public interface IDaPassingStationCollectionService |
| | | public interface IDaPassingStationCollectionService extends IService<DaPassingStationCollection> |
| | | { |
| | | /** |
| | | * 查询产品过站采集 |
| | |
| | | */ |
| | | public int updateDaPassingStationCollection(DaPassingStationCollection daPassingStationCollection); |
| | | |
| | | public int updateDaPassingStationCollectionBySfcCodeAndLocationCode(DaPassingStationCollection daPassingStationCollection); |
| | | |
| | | |
| | | /** |
| | | * 批量删除产品过站采集 |
| | | * |
| | |
| | | public int deleteDaPassingStationCollectionById(Long id); |
| | | |
| | | void insertRepairRecordByIds(DaPassingStationCollection daPassingStationCollection); |
| | | |
| | | int jrmAddPassingStationCollection(DaPassingStationCollection daPassingStationCollection); |
| | | |
| | | void saveBeachDaPassingStationCollection(List<DaPassingStationCollection> list); |
| | | } |