MT1201Controller.java 754 字节
package com.sunyo.wlpt.message.builder.controller;

import com.sunyo.wlpt.message.builder.util.CustomXmlMaker;
import freemarker.template.Configuration;
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("/mt1201")
public class MT1201Controller extends CustomXmlMaker {

    private static String businessType = "MT1201";

    @Autowired
    private Configuration freemakerTemplate;

    @RequestMapping("/send")
    public Boolean mt1201New(@RequestBody Map awb_manifest) throws Exception{

    }
}