| | |
| | | import java.text.DecimalFormat;
|
| | | import java.util.ArrayList;
|
| | | import java.util.List;
|
| | | import java.util.Map;
|
| | |
|
| | | import javax.annotation.Resource;
|
| | |
|
| | |
| | | }
|
| | |
|
| | | @Override
|
| | | public List<UserGoldCoinVO> listByUserGoldCoin(long start, int count, int type) {
|
| | | return userInfoCountMapper.listByUserGoldCoin(start, count, type);
|
| | | public List<UserGoldCoinVO> listByUserGoldCoin(long start, int count, int type, String key) {
|
| | | return userInfoCountMapper.listByUserGoldCoin(start, count, type, key);
|
| | | }
|
| | |
|
| | | @Override
|
| | | public long countByUserGoldCoin(int type) {
|
| | | return userInfoCountMapper.countByUserGoldCoin(type);
|
| | | public long countByUserGoldCoin(int type, String key) {
|
| | | return userInfoCountMapper.countByUserGoldCoin(type, key);
|
| | | }
|
| | |
|
| | |
|
| | | @Override
|
| | | public List<UserGoldCoinVO> listByHasGoldCoin(long start, int count) {
|
| | | return userInfoCountMapper.listByHasGoldCoin(start, count);
|
| | | public List<UserGoldCoinVO> listByHasGoldCoin(long start, int count, String key) {
|
| | | return userInfoCountMapper.listByHasGoldCoin(start, count, key);
|
| | | }
|
| | |
|
| | | @Override
|
| | | public long countByHasGoldCoin() {
|
| | | return userInfoCountMapper.countByHasGoldCoin();
|
| | | public long countByHasGoldCoin(String key) {
|
| | | return userInfoCountMapper.countByHasGoldCoin(key);
|
| | | }
|
| | | }
|