| | |
| | | package cn.huge.module.client.api; |
| | | |
| | | import cn.huge.base.common.bo.ReturnBO; |
| | | import cn.huge.module.mediate.dto.WechatBindCaseDTO; |
| | | |
| | | import cn.huge.module.sync.domain.target.TargetCtAccount; |
| | | import cn.huge.module.sync.domain.target.TargetCtUnit; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | |
| | | public interface CustClient { |
| | | |
| | | /** |
| | | * |
| | | * @url {ctx}/api/v1/ctUser/clientGetUser?userId= |
| | | * @param targetCtUnitList 登录用户编号 |
| | | * 微服务调用-数据迁移-批量新增 |
| | | * @url {ctx}/api/client/ctUnit/saveCtUnitList |
| | | * @param targetTableList 批量数据 |
| | | * @return ReturnBO |
| | | */ |
| | | @GetMapping("/api/web/ctUnit/saveCtUnitList") |
| | | ReturnBO saveCtUnitList(@RequestBody List<TargetCtUnit> targetCtUnitList); |
| | | @GetMapping("/api/client/ctUnit/saveCtUnitList") |
| | | ReturnBO saveTableList(@RequestBody List<TargetCtUnit> targetTableList); |
| | | |
| | | /** |
| | | * 微服务调用-数据迁移-批量新增 |
| | | * @url {ctx}/api/client/ctUnit/saveCtUnitList |
| | | * @param targetTableList 批量数据 |
| | | * @return ReturnBO |
| | | */ |
| | | @GetMapping("/api/web/ctAccount/saveCtAccountList") |
| | | ReturnBO saveTableList1(@RequestBody List<TargetCtAccount> targetTableList); |
| | | } |