#
zjj
2024-06-19 f11ce451cef38b58a189e92d943566282e6a316c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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<WrkMastLogMapper, WrkMastLog> implements WrkMastLogService {
 
    @Override
    public boolean saveToHistory(Long id) {
        return this.baseMapper.saveToHistory(id) > 0;
    }
 
}