CustomerMapper.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. package com.jkcredit.invoice.mapper.customer;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.baomidou.mybatisplus.core.metadata.IPage;
  4. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  5. import com.jkcredit.invoice.model.entity.customer.Customer;
  6. import org.apache.ibatis.annotations.Param;
  7. import org.springframework.stereotype.Repository;
  8. import java.util.List;
  9. @Repository
  10. public interface CustomerMapper extends BaseMapper<Customer> {
  11. int deleteByPrimaryKey(Integer id);
  12. @Override
  13. int insert(Customer record);
  14. int insertSelective(Customer record);
  15. Customer selectByPrimaryKey(Integer id);
  16. Customer selectByCustomerName(String customerName);
  17. Customer selectByCustomerNameForLock(String customerName);
  18. int updateByPrimaryKeySelective(Customer record);
  19. int updateByPrimaryKey(Customer record);
  20. IPage<List<Customer>> selectAllByPage(Page page, @Param("customer") Customer customer);
  21. IPage<List<Customer>> selectAllByPageForNoMoney(Page page, @Param("customer") Customer customer);
  22. IPage<List<Customer>> selectAllByPageForNoMoneyByZero(Page page, @Param("customer") Customer customer);
  23. Customer selectByAppKeyAndAppSecret(String customerName, String appSecret);
  24. }