1234567891011121314151617181920212223242526 |
- package com.hssx.cloudmodel.mapper;
- import com.hssx.cloudmodel.entity.Company;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.hssx.cloudmodel.entity.User;
- import com.hssx.cloudmodel.entity.vo.CompanyVO;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author 吴涛涛
- * @since 2019-07-26
- */
- public interface CompanyMapper extends BaseMapper<Company> {
- // List<CompanyVO> getListByKeyName(@Param("keyName") String keyName, @Param("companyType")Integer companyType);
- List<CompanyVO> getCustomerListByKeyName(@Param("keyName") String keyName, @Param("companyType")Integer companyType);
- List<CompanyVO> getListMould(@Param("mouldIds")List<Integer> mouldIds);
- }
|