#
Junjie
19 小时以前 51a1786ef3e4e016d5f3f7bad8c2e2e8a84247a6
src/main/java/com/zy/asrs/service/impl/WrkMastLogServiceImpl.java
@@ -6,15 +6,17 @@
import com.zy.asrs.mapper.WrkMastLogMapper;
import com.zy.asrs.service.WrkMastLogService;
import com.zy.asrs.service.WrkMastService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service("wrkMastLogService")
public class WrkMastLogServiceImpl extends ServiceImpl<WrkMastLogMapper, WrkMastLog> implements WrkMastLogService {
    @Autowired
    private WrkMastService wrkMastService;
    private final WrkMastService wrkMastService;
    public WrkMastLogServiceImpl(WrkMastService wrkMastService) {
        this.wrkMastService = wrkMastService;
    }
    @Override
    public boolean save(Integer wrkNo) {