CompanyMapper.java 759 B

1234567891011121314151617181920212223242526
  1. package com.hssx.cloudmodel.mapper;
  2. import com.hssx.cloudmodel.entity.Company;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. import com.hssx.cloudmodel.entity.User;
  5. import com.hssx.cloudmodel.entity.vo.CompanyVO;
  6. import org.apache.ibatis.annotations.Param;
  7. import java.util.List;
  8. /**
  9. * <p>
  10. * Mapper 接口
  11. * </p>
  12. *
  13. * @author 吴涛涛
  14. * @since 2019-07-26
  15. */
  16. public interface CompanyMapper extends BaseMapper<Company> {
  17. // List<CompanyVO> getListByKeyName(@Param("keyName") String keyName, @Param("companyType")Integer companyType);
  18. List<CompanyVO> getCustomerListByKeyName(@Param("keyName") String keyName, @Param("companyType")Integer companyType);
  19. List<CompanyVO> getListMould(@Param("mouldIds")List<Integer> mouldIds);
  20. }