MT4201Controller.java
718 字节
package com.sunyo.wlpt.message.builder.controller;
import com.sunyo.wlpt.message.builder.service.MT4201Service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.io.IOException;
import java.util.Map;
@RestController
@RequestMapping("/mt4201")
public class MT4201Controller {
@Autowired
MT4201Service mt4201Service;
@RequestMapping("/create4201")
public int pffmcreate(@RequestBody Map<String, Object> map) throws IOException {
return mt4201Service.pffmcreate(map);
}
}