| | |
| | | package com.zy.asrs.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.service.impl.ServiceImpl; |
| | | import com.zy.asrs.entity.AgvWrkMast; |
| | | import com.zy.asrs.entity.AgvWrkMastLog; |
| | | import com.zy.asrs.mapper.AgvWrkMastLogMapper; |
| | | import com.zy.asrs.service.AgvWrkMastLogService; |
| | |
| | | public class AgvWrkMastLogServiceImpl extends ServiceImpl<AgvWrkMastLogMapper, AgvWrkMastLog> implements AgvWrkMastLogService { |
| | | |
| | | @Override |
| | | public boolean save(Integer workNo) { |
| | | return this.baseMapper.save(workNo) > 0; |
| | | public boolean save(AgvWrkMast agvWrkMast) { |
| | | return this.baseMapper.saveByWrkMast(agvWrkMast) > 0; |
| | | } |
| | | |
| | | } |