erp修改
This commit is contained in:
@@ -23,11 +23,11 @@ public interface ErpExternalApi {
|
||||
|
||||
@PostMapping(PREFIX + "/submit")
|
||||
@Operation(summary = "erp数据提交")
|
||||
HashMap<String, String> submitDataToErp(@Valid @RequestBody ErpSubmitReqDTO reqDTO);
|
||||
Map<String, String> submitDataToErp(@Valid @RequestBody ErpSubmitReqDTO reqDTO);
|
||||
|
||||
@PostMapping(PREFIX + "/query")
|
||||
@Operation(summary = "erp数据查询")
|
||||
HashMap<String, Object> queryDataToErp(@Valid @RequestBody ErpQueryReqDTO reqDTO);
|
||||
Map<String, Object> queryDataToErp(@Valid @RequestBody ErpQueryReqDTO reqDTO);
|
||||
|
||||
@PostMapping(PREFIX + "/queryProductiveVersion")
|
||||
@Operation(summary = "生产版本数据查询")
|
||||
|
||||
@@ -24,14 +24,19 @@ public class ErpSubmitReqDTO {
|
||||
*/
|
||||
@Schema(description = "接口编号,必须,参见RFC功能列表,可调用接口编号范围051-900")
|
||||
private String funcnr;
|
||||
|
||||
@Schema(description = "调用系统业务单据编号,必须,在外部系统唯一,用于关联")
|
||||
private String bskey;
|
||||
|
||||
@Schema(description = "SAP系统ID, 必须")
|
||||
private String usrid;
|
||||
|
||||
@Schema(description = "源调用系统ID,必须")
|
||||
private String usrnm;
|
||||
// @Schema(description = "签名,uuid+srcsys+密码,MD5 32位小写签名,密码另行约定")
|
||||
// private String sign;
|
||||
|
||||
@Schema(description = "签名,uuid+srcsys+密码,MD5 32位小写签名,密码另行约定")
|
||||
private String sign;
|
||||
|
||||
@Schema(description = "具体参数,参见RFC功能列表")
|
||||
private Map<String, Object> req;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user