fengxiang
2017-12-22 454e8c85ee7f47ff82fa93d502bde832c8f888f9
1
2
3
4
5
6
7
8
9
10
11
12
package com.moral.controller;
 
 
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
@RestController
@RequestMapping("device-version")
@CrossOrigin(origins = "*", maxAge = 3600)
public class DeviceVersionController {
}