提交 | 用户 | age
|
4a384f
|
1 |
package com.hz.his.feign.service.platform.quotation; |
F |
2 |
|
|
3 |
import com.hx.resultTool.Result; |
|
4 |
import com.hz.his.dto.quotation.QuotationDto; |
|
5 |
import org.springframework.cloud.openfeign.FeignClient; |
|
6 |
import org.springframework.web.bind.annotation.PostMapping; |
|
7 |
import org.springframework.web.bind.annotation.RequestBody; |
|
8 |
|
|
9 |
/** |
|
10 |
* 报价单service |
|
11 |
* @USER: fhx |
|
12 |
* @DATE: 2023/8/8 |
|
13 |
**/ |
|
14 |
@FeignClient(name="phi-platform-service",path = "/phip",contextId = "phip-quotation") |
|
15 |
public interface SPhipQuotationService { |
|
16 |
|
|
17 |
/** 列表信息接口 */ |
a99063
|
18 |
@PostMapping("/quotation/list") |
4a384f
|
19 |
Result list(@RequestBody QuotationDto dto); |
F |
20 |
|
|
21 |
/** 新增信息接口 */ |
a99063
|
22 |
@PostMapping("/quotation/addInfo") |
4a384f
|
23 |
Result addInfo(@RequestBody QuotationDto dto); |
F |
24 |
|
|
25 |
/** 编辑信息接口 */ |
a99063
|
26 |
@PostMapping("/quotation/editInfo") |
4a384f
|
27 |
Result editInfo(@RequestBody QuotationDto dto); |
F |
28 |
|
|
29 |
/** 新增报价单 */ |
a99063
|
30 |
@PostMapping("/quotation/add") |
4a384f
|
31 |
Result add(@RequestBody QuotationDto dto); |
F |
32 |
|
|
33 |
/** 编辑报价单 */ |
a99063
|
34 |
@PostMapping("/quotation/edit") |
4a384f
|
35 |
Result edit(@RequestBody QuotationDto dto); |
F |
36 |
|
|
37 |
/** 删除报价单 */ |
a99063
|
38 |
@PostMapping("/quotation/del") |
4a384f
|
39 |
Result del(@RequestBody QuotationDto dto); |
d6191f
|
40 |
|
F |
41 |
/** CRM报价单信息 */ |
a99063
|
42 |
@PostMapping("/quotation/crmQuotationInfo") |
d6191f
|
43 |
Result crmQuotationInfo(@RequestBody QuotationDto dto); |
F |
44 |
|
|
45 |
/** 开单数据 */ |
a99063
|
46 |
@PostMapping("/quotation/openOrderData") |
d6191f
|
47 |
Result openOrderData(@RequestBody QuotationDto dto); |
4a384f
|
48 |
} |