重新更加xsd生成所有的消息pojo类 。并完整重构代码

This commit is contained in:
zhouxiunai
2018-12-07 15:29:28 +08:00
parent c02dc7929b
commit 63ffe59fd4
176 changed files with 32695 additions and 1757 deletions
@@ -7,7 +7,7 @@ import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import com.gzzn.omms.msgexchangeapi.dto.ResponseDto;
import com.gzzn.omms.msgexchangeapi.entity.msg.schd.dnld.FLTR;
import com.gzzn.omms.msgexchangeapi.entity.msg.SCHD;
import com.gzzn.omms.msgexchangeapi.service.flightInfo.IFlightInfoService;
@RestController
@@ -20,7 +20,7 @@ public class FlightsController {
* 获取最新完整的动态航班信息
*/
@GetMapping("/all/flights")
public ResponseDto<List<FLTR>> findAll( ) {
public ResponseDto<List<SCHD.FLTR>> findAll( ) {
return ResponseDto.success(flightInfoService.findAll());
}
}