package com.zy.asrs.common.wms.service.impl; import com.zy.asrs.common.wms.mapper.WrkMastLogMapper; import com.zy.asrs.common.wms.entity.WrkMastLog; import com.zy.asrs.common.wms.service.WrkMastLogService; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import org.springframework.stereotype.Service; @Service("wrkMastLogService") public class WrkMastLogServiceImpl extends ServiceImpl implements WrkMastLogService { @Override public boolean saveToHistory(Long id) { return this.baseMapper.saveToHistory(id) > 0; } }