mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.panzhihua.common.service.community;
 
import com.panzhihua.common.constants.Constants;
import com.panzhihua.common.model.dtos.equipment.UnionReportDto;
import com.panzhihua.common.model.vos.LoginUserInfoVO;
import com.panzhihua.common.model.vos.R;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
 
@FeignClient(name = Constants.SERVICE_EQUIPMENT, contextId = "unionReport", path = "unionReport")
public interface ComEquipmentUnionRePortFeign {
 
    /**
     * 总工会户外劳登录
     *
     * @param unionReportDto
     * @return 总工会户外劳工上报
     */
    @PostMapping("/add")
    R add(UnionReportDto unionReportDto);
 
 
    /**
     * 分页户外劳工站上报表
     *
     * @param unionReportDto
     * @return 动态结果
     */
    @PostMapping("/query")
    R query(UnionReportDto unionReportDto);
 
 
}