| | |
| | | import com.iailab.module.data.ind.item.dao.IndItemCalDao; |
| | | import com.iailab.module.data.ind.item.entity.IndItemCalEntity; |
| | | import com.iailab.module.data.ind.item.service.IndItemCalService; |
| | | import com.iailab.module.data.ind.item.vo.IndItemCalVo; |
| | | import com.iailab.module.data.ind.item.vo.IndItemCalVO; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | /** |
| | |
| | | @Service |
| | | public class IndItemCalServiceImpl extends BaseServiceImpl<IndItemCalDao, IndItemCalEntity> implements IndItemCalService { |
| | | @Override |
| | | public IndItemCalVo getByItemId(String itemId) { |
| | | return BeanUtils.toBean(baseDao.selectOne(new QueryWrapper<IndItemCalEntity>().eq("item_id", itemId)), IndItemCalVo.class); |
| | | public IndItemCalVO getByItemId(String itemId) { |
| | | return BeanUtils.toBean(baseDao.selectOne(new QueryWrapper<IndItemCalEntity>().eq("item_id", itemId)), IndItemCalVO.class); |
| | | } |
| | | |
| | | @Override |