SupplierMapper.java 916 B

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