123456789101112131415161718192021222324252627282930313233343536373839 |
- package com.jsh.erp.datasource.mappers;
- import com.jsh.erp.datasource.entities.Depot;
- import com.jsh.erp.datasource.entities.DepotExample;
- import java.util.List;
- import com.jsh.erp.datasource.vo.SpinnerVO;
- import org.apache.ibatis.annotations.Param;
- public interface DepotMapper extends BaseMapperX<Depot> {
- /**
- * 仓库下拉框
- * @return
- */
- List<SpinnerVO> depotSpinnerList();
- long countByExample(DepotExample example);
- int deleteByExample(DepotExample example);
- int deleteByPrimaryKey(Long id);
- int insert(Depot record);
- int insertSelective(Depot record);
- List<Depot> selectByExample(DepotExample example);
- Depot selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") Depot record, @Param("example") DepotExample example);
- int updateByExample(@Param("record") Depot record, @Param("example") DepotExample example);
- int updateByPrimaryKeySelective(Depot record);
- int updateByPrimaryKey(Depot record);
- }
|