123456789101112131415161718192021222324252627 |
- //package com.hfln.device.application.facade;
- //
- //import cn.hfln.framework.catchlog.CatchAndLog;
- //import cn.hfln.framework.dto.ApiResult;
- //import com.hfln.device.common.facade.DingFacade;
- //import com.hfln.device.common.request.user.DingUserSyncReq;
- //import com.hfln.device.domain.gateway.UserGateway;
- //import org.springframework.web.bind.annotation.RestController;
- //
- //import javax.annotation.Resource;
- //
- ///**
- // * @Author: huangls
- // * @CreateTime: 2023-11-29
- // */
- //@CatchAndLog
- //@RestController
- //public class DingFacadeImpl implements DingFacade {
- //
- // @Resource
- // private UserGateway userGateway;
- //
- // @Override
- // public ApiResult<Boolean> syncDingUserInfo(DingUserSyncReq reqs) {
- // return ApiResult.success(userGateway.syncDingUserInfo(reqs));
- // }
- //}
|