MaterialCurrentStockMapper.java 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. package com.jsh.erp.datasource.mappers;
  2. import com.jsh.erp.datasource.entities.MaterialCurrentStock;
  3. import com.jsh.erp.datasource.entities.MaterialCurrentStockExample;
  4. import java.util.List;
  5. import com.jsh.erp.datasource.entities.MaterialInitialStock;
  6. import org.apache.ibatis.annotations.Param;
  7. public interface MaterialCurrentStockMapper extends BaseMapperX<MaterialCurrentStock> {
  8. long countByExample(MaterialCurrentStockExample example);
  9. int deleteByExample(MaterialCurrentStockExample example);
  10. int deleteByPrimaryKey(Long id);
  11. int insert(MaterialCurrentStock record);
  12. int insertSelective(MaterialCurrentStock record);
  13. List<MaterialCurrentStock> selectByExample(MaterialCurrentStockExample example);
  14. MaterialCurrentStock selectByPrimaryKey(Long id);
  15. int updateByExampleSelective(@Param("record") MaterialCurrentStock record, @Param("example") MaterialCurrentStockExample example);
  16. int updateByExample(@Param("record") MaterialCurrentStock record, @Param("example") MaterialCurrentStockExample example);
  17. int updateByPrimaryKeySelective(MaterialCurrentStock record);
  18. int updateByPrimaryKey(MaterialCurrentStock record);
  19. }