wuxw
2022-07-15 0a52cc1a35c346d96d8a8b821997b5fdc765ebeb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.java110.intf.store;
 
 
import com.java110.config.feign.FeignConfiguration;
import com.java110.dto.user.StaffDto;
import com.java110.dto.workflow.WorkflowDto;
import com.java110.vo.api.staff.ApiStaffDataVo;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
 
/**
 * 采购申请类
 */
@FeignClient(name = "${java110.store-service}", configuration = {FeignConfiguration.class})
@RequestMapping("/purchase")
public interface IPurchaseApi {
 
}