| | |
| | | package inventory.mapper; |
| | | package com.ruoyi.inventory.mapper; |
| | | |
| | | import inventory.domain.StockProduct; |
| | | |
| | | |
| | | import com.ruoyi.inventory.pojo.StockProduct; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author 86151 |
| | |
| | | * @Entity inventory.domain.StockProduct |
| | | */ |
| | | public interface StockProductMapper { |
| | | |
| | | List<StockProduct> selectList(); |
| | | int deleteByPrimaryKey(Long id); |
| | | |
| | | int insert(StockProduct record); |
| | | |
| | | int insertSelective(StockProduct record); |
| | | |
| | |
| | | |
| | | int updateByPrimaryKeySelective(StockProduct record); |
| | | |
| | | int updateByPrimaryKey(StockProduct record); |
| | | |
| | | } |