| | |
| | |
|
| | | import javax.annotation.Resource;
|
| | |
|
| | | import org.apache.ibatis.annotations.Param;
|
| | | import org.springframework.stereotype.Service;
|
| | | import org.springframework.transaction.annotation.Transactional;
|
| | |
|
| | |
| | | * @return
|
| | | */
|
| | | @Override
|
| | | public List<LostOrder> listQuery(long start, int count, String key, Integer state, Integer handleType) {
|
| | | return lostOrderMapper.listQuery(start, count, key, state, handleType);
|
| | | public List<LostOrder> listQuery(long start, int count, String key, Integer state, Integer handleType, Integer type) {
|
| | | return lostOrderMapper.listQuery(start, count, key, state, handleType, type);
|
| | | }
|
| | |
|
| | | @Override
|
| | | public long countQuery(String key, Integer state, Integer handleType) {
|
| | | return lostOrderMapper.countQuery(key, state, handleType);
|
| | | public long countQuery(String key, Integer state, Integer handleType, Integer type) {
|
| | | return lostOrderMapper.countQuery(key, state, handleType, type);
|
| | | }
|
| | |
|
| | | @Override
|