package com.panzhihua.common.service.community;
|
|
import com.panzhihua.common.model.vos.R;
|
import com.panzhihua.common.model.vos.community.ComActActivityVO;
|
import org.springframework.cloud.openfeign.FeignClient;
|
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
/**
|
* @program: springcloud_k8s_panzhihuazhihuishequ
|
* @description: 社区
|
* @author: huang.hongfa weixin hhf9596 qq 959656820
|
* @create: 2020-12-07 15:59
|
**/
|
@FeignClient(name = "community")
|
public interface CommunityService {
|
/**
|
* 新增社区活动
|
* @param comActActivityVO 新增信息
|
* @return 新增结果
|
*/
|
@PostMapping("/activity")
|
R addActivity(@RequestBody ComActActivityVO comActActivityVO);
|
}
|