| | |
| | | package zy.cloud.wms.manager.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.mapper.EntityWrapper; |
| | | import zy.cloud.wms.manager.mapper.CstmrMapper; |
| | | import zy.cloud.wms.manager.entity.Cstmr; |
| | | import zy.cloud.wms.manager.service.CstmrService; |
| | |
| | | @Service("cstmrService") |
| | | public class CstmrServiceImpl extends ServiceImpl<CstmrMapper, Cstmr> implements CstmrService { |
| | | |
| | | @Override |
| | | public Cstmr selectByName(String name) { |
| | | Cstmr cstmr = new Cstmr(); |
| | | cstmr.setName(name); |
| | | return this.selectOne(new EntityWrapper<>(cstmr)); |
| | | } |
| | | } |