package com.zy.asrs.common.wms.service.impl; import com.zy.asrs.common.wms.mapper.WrkDetlLogMapper; import com.zy.asrs.common.wms.entity.WrkDetlLog; import com.zy.asrs.common.wms.service.WrkDetlLogService; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import org.springframework.stereotype.Service; @Service("wrkDetlLogService") public class WrkDetlLogServiceImpl extends ServiceImpl implements WrkDetlLogService { @Override public boolean saveToHistory(Integer workNo, Long hostId) { return this.baseMapper.saveToHistory(workNo, hostId) > 0; } }