master
wangning 7 years ago
parent c2595dec95
commit d47602829e

@ -245,6 +245,7 @@ public class RetailAppController {
@RequestMapping(value = "/client/apply", method = RequestMethod.PUT)
@ResponseBody
public void updatePartnerInfo(@ModelAttribute(RETAIL_DEVICE) JSONObject device,@RequestBody ClientUpdateInfo info) {
System.out.println(info.toString());
retailAppService.updateMerchantInfo(device,info);
}

@ -400,4 +400,35 @@ public class ClientUpdateInfo {
// }
@Override
public String toString() {
return "ClientUpdateInfo{" +
"clientMoniker='" + clientMoniker + '\'' +
", companyName='" + companyName + '\'' +
", shortName='" + shortName + '\'' +
", businessName='" + businessName + '\'' +
", businessStructure='" + businessStructure + '\'' +
", abn='" + abn + '\'' +
", acn='" + acn + '\'' +
", industry='" + industry + '\'' +
", companyPhoto='" + companyPhoto + '\'' +
", storePhoto='" + storePhoto + '\'' +
", companyWebsite='" + companyWebsite + '\'' +
", companyPhone='" + companyPhone + '\'' +
", description='" + description + '\'' +
", remark='" + remark + '\'' +
", sector='" + sector + '\'' +
", logoId='" + logoId + '\'' +
", contactPerson='" + contactPerson + '\'' +
", contactPhone='" + contactPhone + '\'' +
", contactEmail='" + contactEmail + '\'' +
", address='" + address + '\'' +
", suburb='" + suburb + '\'' +
", postcode='" + postcode + '\'' +
", state='" + state + '\'' +
", country='" + country + '\'' +
", timezone='" + timezone + '\'' +
", client_apply_id='" + client_apply_id + '\'' +
'}';
}
}

Loading…
Cancel
Save