DepotMapper.java 1006 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package com.jsh.erp.datasource.mappers;
  2. import com.jsh.erp.datasource.entities.Depot;
  3. import com.jsh.erp.datasource.entities.DepotExample;
  4. import java.util.List;
  5. import com.jsh.erp.datasource.vo.SpinnerVO;
  6. import org.apache.ibatis.annotations.Param;
  7. public interface DepotMapper extends BaseMapperX<Depot> {
  8. /**
  9. * 仓库下拉框
  10. * @return
  11. */
  12. List<SpinnerVO> depotSpinnerList();
  13. long countByExample(DepotExample example);
  14. int deleteByExample(DepotExample example);
  15. int deleteByPrimaryKey(Long id);
  16. int insert(Depot record);
  17. int insertSelective(Depot record);
  18. List<Depot> selectByExample(DepotExample example);
  19. Depot selectByPrimaryKey(Long id);
  20. int updateByExampleSelective(@Param("record") Depot record, @Param("example") DepotExample example);
  21. int updateByExample(@Param("record") Depot record, @Param("example") DepotExample example);
  22. int updateByPrimaryKeySelective(Depot record);
  23. int updateByPrimaryKey(Depot record);
  24. }