| | |
| | | import org.jeecg.modules.mdc.entity.MdcWorkshopInfo; |
| | | import org.jeecg.modules.mdc.mapper.MdcWorkshopInfoMapper; |
| | | import org.jeecg.modules.mdc.service.IMdcWorkshopInfoService; |
| | | import org.jeecg.modules.system.entity.MdcProduction; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | |
| | | public List<MdcWorkshopInfo> listByUser(String userId) { |
| | | return this.baseMapper.listByUser(userId); |
| | | } |
| | | |
| | | /** |
| | | * 查询车间 |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<MdcProduction> productionListByUser(String userId) { |
| | | return this.baseMapper.productionListByUser(userId); |
| | | } |
| | | } |