|
@@ -40,7 +40,7 @@ public class CommonUserInfoServiceImpl implements ICommonUserInfoService {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public Page<CommonUserInfo> list(String nickname, String password, String phone, String realname, Long shareCard, Long lookPage, Long autoAccept, Long status, Date gmtCreate, Date gmtUpdate, Long deleteFlag, Integer page, Integer limit) throws ServiceException {
|
|
|
+ public Page<CommonUserInfo> list(String nickname, String password, String phone, String realname, Long automaticSkip, String myEntry, String defaultEntry, Long status, Date gmtCreate, Date gmtUpdate, Long deleteFlag, Integer page, Integer limit) throws ServiceException {
|
|
|
Wrapper<CommonUserInfo> wrapper = new EntityWrapper<CommonUserInfo>();
|
|
|
if (!StringUtils.isEmpty(nickname)) {
|
|
|
wrapper.eq("nickname", nickname);
|
|
@@ -54,14 +54,14 @@ public class CommonUserInfoServiceImpl implements ICommonUserInfoService {
|
|
|
if (!StringUtils.isEmpty(realname)) {
|
|
|
wrapper.eq("realname", realname);
|
|
|
}
|
|
|
- if (!StringUtils.isEmpty(shareCard)) {
|
|
|
- wrapper.eq("share_card", shareCard);
|
|
|
+ if (!StringUtils.isEmpty(automaticSkip)) {
|
|
|
+ wrapper.eq("automatic_skip", automaticSkip);
|
|
|
}
|
|
|
- if (!StringUtils.isEmpty(lookPage)) {
|
|
|
- wrapper.eq("look_page", lookPage);
|
|
|
+ if (!StringUtils.isEmpty(myEntry)) {
|
|
|
+ wrapper.eq("my_entry", myEntry);
|
|
|
}
|
|
|
- if (!StringUtils.isEmpty(autoAccept)) {
|
|
|
- wrapper.eq("auto_accept", autoAccept);
|
|
|
+ if (!StringUtils.isEmpty(defaultEntry)) {
|
|
|
+ wrapper.eq("default_entry", defaultEntry);
|
|
|
}
|
|
|
if (!StringUtils.isEmpty(status)) {
|
|
|
wrapper.eq("status", status);
|
|
@@ -109,7 +109,7 @@ public class CommonUserInfoServiceImpl implements ICommonUserInfoService {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public String export(String nickname, String password, String phone, String realname, Long shareCard, Long lookPage, Long autoAccept, Long status, Date gmtCreate, Date gmtUpdate, Long deleteFlag, Integer page, Integer limit) throws ServiceException {
|
|
|
+ public String export(String nickname, String password, String phone, String realname, Long automaticSkip, String myEntry, String defaultEntry, Long status, Date gmtCreate, Date gmtUpdate, Long deleteFlag, Integer page, Integer limit) throws ServiceException {
|
|
|
Wrapper<CommonUserInfo> wrapper = new EntityWrapper<CommonUserInfo>();
|
|
|
if (!StringUtils.isEmpty(nickname)) {
|
|
|
wrapper.eq("nickname", nickname);
|
|
@@ -123,14 +123,14 @@ public class CommonUserInfoServiceImpl implements ICommonUserInfoService {
|
|
|
if (!StringUtils.isEmpty(realname)) {
|
|
|
wrapper.eq("realname", realname);
|
|
|
}
|
|
|
- if (!StringUtils.isEmpty(shareCard)) {
|
|
|
- wrapper.eq("share_card", shareCard);
|
|
|
+ if (!StringUtils.isEmpty(automaticSkip)) {
|
|
|
+ wrapper.eq("automatic_skip", automaticSkip);
|
|
|
}
|
|
|
- if (!StringUtils.isEmpty(lookPage)) {
|
|
|
- wrapper.eq("look_page", lookPage);
|
|
|
+ if (!StringUtils.isEmpty(myEntry)) {
|
|
|
+ wrapper.eq("my_entry", myEntry);
|
|
|
}
|
|
|
- if (!StringUtils.isEmpty(autoAccept)) {
|
|
|
- wrapper.eq("auto_accept", autoAccept);
|
|
|
+ if (!StringUtils.isEmpty(defaultEntry)) {
|
|
|
+ wrapper.eq("default_entry", defaultEntry);
|
|
|
}
|
|
|
if (!StringUtils.isEmpty(status)) {
|
|
|
wrapper.eq("status", status);
|