| | |
| | | package com.iailab.module.data.ind.item.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.iailab.framework.common.service.impl.BaseServiceImpl; |
| | | import com.iailab.framework.common.util.object.BeanUtils; |
| | | 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 org.springframework.stereotype.Service; |
| | | |
| | | /** |
| | | * @author PanZhibao |
| | | * @Description |
| | | * @createTime 2024年09月11日 |
| | | */ |
| | | @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); |
| | | } |
| | | |
| | | @Override |
| | | public void deleteByItemId(String itemId) { |
| | | baseDao.delete(new QueryWrapper<IndItemCalEntity>().eq("item_id", itemId)); |
| | | } |
| | | } |