mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-10-02 18:26:38 +08:00
remove channdId
This commit is contained in:
parent
5be0db736e
commit
0045263a7a
@ -18,7 +18,8 @@ public class MemberAccountService {
|
||||
|
||||
private String url = "http://miniapp-test.royalcanin.com.cn:7080/crm/memberAccount/";
|
||||
|
||||
public String memberAccountChange(MemberAccountChangeEntity memberAccountChangeEntity) throws Exception{
|
||||
public String memberAccountChange(MemberAccountChangeEntity memberAccountChangeEntity){
|
||||
memberAccountChangeEntity.setChannelId(15);
|
||||
Map<String, String> paramMap = MapRemoveNullUtil.setConditionMap(memberAccountChangeEntity);
|
||||
MapRemoveNullUtil.removeNullEntry(paramMap);
|
||||
net.sf.json.JSONObject jsonObject = net.sf.json.JSONObject.fromObject(paramMap);
|
||||
@ -26,6 +27,7 @@ public class MemberAccountService {
|
||||
}
|
||||
|
||||
public String memberAccountHistory(MemberAccountHistoryEntity memberAccountHistoryEntity) throws Exception{
|
||||
memberAccountHistoryEntity.setChannelId(15);
|
||||
Map<String, String> paramMap = MapRemoveNullUtil.setConditionMap(memberAccountHistoryEntity);
|
||||
paramMap.put("page",StringUtil.toString(memberAccountHistoryEntity.getPage()).equals("0")?null:StringUtil.toString(memberAccountHistoryEntity.getPage()));
|
||||
paramMap.put("row",StringUtil.toString(memberAccountHistoryEntity.getRows()).equals("0")?null:StringUtil.toString(memberAccountHistoryEntity.getRows()));
|
||||
|
Loading…
Reference in New Issue
Block a user