yujian
2020-01-18 f4a0f2acc63d7785eab108419a4e16f5f688cb95
fanli/src/main/java/com/yeshi/fanli/dao/mybatis/CustomerNameMapper.java
@@ -1,14 +1,14 @@
package com.yeshi.fanli.dao.mybatis;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.yeshi.fanli.dao.BaseMapper;
import com.yeshi.fanli.entity.system.CustomerName;
public interface CustomerNameMapper extends BaseMapper<CustomerName>{
   List<CustomerName> listByTypeAndName(@Param("start") long start, @Param("count") int count,
         @Param("type")Integer type, @Param("key")String key);
package com.yeshi.fanli.dao.mybatis;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.yeshi.fanli.dao.BaseMapper;
import com.yeshi.fanli.entity.system.CustomerName;
public interface CustomerNameMapper extends BaseMapper<CustomerName>{
   List<CustomerName> listByTypeAndName(@Param("start") long start, @Param("count") int count,
         @Param("type")Integer type, @Param("key")String key);
}