CreateftlxController.java 784 字节
package com.sunyo.wlpt.message.builder.controller;

import com.sunyo.wlpt.message.builder.service.*;
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.util.Map;

@RestController
@RequestMapping("/mt8205")
public class CreateftlxController {

    @Autowired
    MT8205Service mt8205Service;


    @RequestMapping("/8205create")
    public Boolean create8205(@RequestBody Map<String, Object> map){

        try {

            return mt8205Service.create8205(map);
        }catch (Exception e){
            e.printStackTrace();
            return false;
        }

    }


}