TestRpcService.kt 432 B

12345678910111213
  1. //package com.gxzc.zen.rpc.api
  2. //
  3. ///**
  4. // * 示例代码(接口)
  5. // * A/B 业务系统定义一个统一的接口,此接口需按照实际实现的业务系统进行划分
  6. // * A/B 业务系统间要定义一个统一的数据模型以便进行交互(不建议直接使用string)
  7. // * @author NorthLan
  8. // * @date 2018/5/7
  9. // * @url https://noahlan.com
  10. // */
  11. //interface TestRpcService {
  12. // fun sayHello(name: String): String
  13. //}