| | |
| | | package com.zy.asrs.wcs.rcs.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.zy.asrs.wcs.rcs.mapper.MotionStsMapper; |
| | | import com.zy.asrs.wcs.rcs.entity.MotionSts; |
| | | import com.zy.asrs.wcs.rcs.service.MotionStsService; |
| | |
| | | @Service("motionStsService") |
| | | public class MotionStsServiceImpl extends ServiceImpl<MotionStsMapper, MotionSts> implements MotionStsService { |
| | | |
| | | @Override |
| | | public MotionSts selectByFlag(String flag) { |
| | | return this.getOne(new LambdaQueryWrapper<MotionSts>().eq(MotionSts::getFlag, flag)); |
| | | } |
| | | } |