IActivitiesBMO.java 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * Copyright 2017-2020 吴学文 and java110 team.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.java110.api.bmo.activities;
  17. import com.alibaba.fastjson.JSONObject;
  18. import com.java110.api.bmo.IApiBaseBMO;
  19. import com.java110.core.context.DataFlowContext;
  20. public interface IActivitiesBMO extends IApiBaseBMO {
  21. /**
  22. * 添加物业费用
  23. *
  24. * @param paramInJson 接口调用放传入入参
  25. * @param dataFlowContext 数据上下文
  26. * @return 订单服务能够接受的报文
  27. */
  28. JSONObject addHeaderImg(JSONObject paramInJson, DataFlowContext dataFlowContext);
  29. /**
  30. * 添加活动
  31. * @param paramInJson
  32. * @param dataFlowContext
  33. * @return
  34. */
  35. JSONObject addActivities(JSONObject paramInJson, DataFlowContext dataFlowContext);
  36. /**
  37. * 修改头部照片
  38. *
  39. * @param paramInJson 接口调用放传入入参
  40. * @param dataFlowContext 数据上下文
  41. * @return 订单服务能够接受的报文
  42. */
  43. JSONObject editHeaderImg(JSONObject paramInJson, DataFlowContext dataFlowContext);
  44. /**
  45. * 添加活动信息
  46. *
  47. * @param paramInJson 接口调用放传入入参
  48. * @param dataFlowContext 数据上下文
  49. * @return 订单服务能够接受的报文
  50. */
  51. JSONObject updateActivities(JSONObject paramInJson, DataFlowContext dataFlowContext);
  52. /**
  53. * 删除活动
  54. *
  55. * @param paramInJson 接口调用放传入入参
  56. * @param dataFlowContext 数据上下文
  57. * @return 订单服务能够接受的报文
  58. */
  59. JSONObject deleteActivities(JSONObject paramInJson, DataFlowContext dataFlowContext);
  60. }