懒羊羊
2024-04-08 42cfe3f13b09d8b06935fb371fe327387292abc9
jcdm-main/src/main/java/com/jcdm/main/om/productionOrde/service/impl/OmProductionOrdeInfoServiceImpl.java
@@ -3,6 +3,7 @@
import java.util.List;
import java.util.stream.Collectors;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.jcdm.common.core.domain.AjaxResult;
import com.jcdm.common.utils.DateUtils;
import com.jcdm.main.om.productionOrde.domain.OmProductionOrdeInfo;
@@ -18,7 +19,7 @@
 * @date 2023-12-11
 */
@Service
public class OmProductionOrdeInfoServiceImpl implements IOmProductionOrdeInfoService
public class OmProductionOrdeInfoServiceImpl extends ServiceImpl<OmProductionOrdeInfoMapper,OmProductionOrdeInfo> implements IOmProductionOrdeInfoService
{
    @Autowired
    private OmProductionOrdeInfoMapper omProductionOrdeInfoMapper;
@@ -134,4 +135,13 @@
        omProductionOrdeInfoService.updateOmProductionOrdeInfo(currentOrdeInfos.get(0));
        return AjaxResult.success("移动成功");
    }
    @Override
    public void overrideSaveBatch(List<OmProductionOrdeInfo> omProductionOrdeInfoList) {
        try {
            this.saveBatch(omProductionOrdeInfoList);
        }catch (Exception e){
            return;
        }
    }
}