|
|
@@ -94,4 +94,19 @@ public class crmLocationController {
|
|
|
return null;
|
|
|
}
|
|
|
|
|
|
+ @Mapping(value = "com.awspaas.user.apps.donenow_crm.get_account")
|
|
|
+ public ResponseObject getAccount(UserContext uc, String accountId) throws SQLException {
|
|
|
+ // 仅查询BO_EU_DNCRM_ACCOUNT单表
|
|
|
+ RowMap rowMap = DBSql.getMap("select * from BO_EU_DNCRM_ACCOUNT where ID=?", new Object[]{accountId});
|
|
|
+
|
|
|
+ if (rowMap != null) {
|
|
|
+ ResponseObject responseObject = ResponseObject.newOkResponse();
|
|
|
+ responseObject.setData(rowMap);
|
|
|
+ return responseObject;
|
|
|
+ }
|
|
|
+
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|