| | |
| | | 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);
|
| | | } |