qkr7828(박재우) 2 years ago
parent
commit
1a3a9b0501
  1. 24
      src/main/java/com/palnet/biz/api/acnt/crtfyhp/controller/AcntCrtfyhpController.java
  2. 4
      src/main/java/com/palnet/biz/api/acnt/cstmr/controller/AcntCstmrController.java
  3. 8
      src/main/java/com/palnet/biz/api/acnt/jwt/controller/JwtAuthenticationController.java
  4. 4
      src/main/java/com/palnet/biz/api/anls/hstry/controller/AnlsHstryController.java
  5. 6
      src/main/java/com/palnet/biz/api/anls/smlt/controller/AnlsSmltController.java
  6. 8
      src/main/java/com/palnet/biz/api/bas/dron/controller/BasDronController.java
  7. 8
      src/main/java/com/palnet/biz/api/bas/flight/controller/BasFlightController.java
  8. 10
      src/main/java/com/palnet/biz/api/bas/group/controller/BasGroupController.java
  9. 12
      src/main/java/com/palnet/biz/api/ctr/cntrl/controller/CtrCntrlController.java
  10. 8
      src/main/java/com/palnet/biz/api/main/dash/controller/MainDashController.java

24
src/main/java/com/palnet/biz/api/acnt/crtfyhp/controller/AcntCrtfyhpController.java

@ -46,7 +46,7 @@ public class AcntCrtfyhpController {
@GetMapping(value = "/register/send") @GetMapping(value = "/register/send")
@Tag(name = "휴대폰 인증 관리", description = "회원 휴대폰 인증 관련 API") @Tag(name = "휴대폰 인증 관리", description = "회원 휴대폰 인증 관련 API")
@ApiImplicitParam(name = "hnpo",value = "휴대폰번호") @ApiImplicitParam(name = "hnpo",value = "휴대폰번호", dataTypeClass = String.class)
public ResponseEntity<? extends BasicResponse> send(String hpno) { public ResponseEntity<? extends BasicResponse> send(String hpno) {
@ -89,8 +89,8 @@ public class AcntCrtfyhpController {
@GetMapping(value = "/register/confirm") @GetMapping(value = "/register/confirm")
@Tag(name = "휴대폰 인증 관리", description = "회원 휴대폰 인증 관련 API") @Tag(name = "휴대폰 인증 관리", description = "회원 휴대폰 인증 관련 API")
@ApiImplicitParams({ @ApiImplicitParams({
@ApiImplicitParam(name = "hpno",value = "휴대폰번호"), @ApiImplicitParam(name = "hpno",value = "휴대폰번호", dataTypeClass = String.class),
@ApiImplicitParam(name = "crtfyNo",value = "인증일련번호") @ApiImplicitParam(name = "crtfyNo",value = "인증일련번호", dataTypeClass = String.class)
}) })
public ResponseEntity<? extends BasicResponse> confirm(String hpno , String crtfyNo) { public ResponseEntity<? extends BasicResponse> confirm(String hpno , String crtfyNo) {
@ -125,8 +125,8 @@ public class AcntCrtfyhpController {
@ApiOperation(value = "아이디 찾기 시 인증번호 발송") @ApiOperation(value = "아이디 찾기 시 인증번호 발송")
@Tag(name = "휴대폰 인증 관리", description = "회원 휴대폰 인증 관련 API") @Tag(name = "휴대폰 인증 관리", description = "회원 휴대폰 인증 관련 API")
@ApiImplicitParams({ @ApiImplicitParams({
@ApiImplicitParam(name = "memberName", value = "회원 이름"), @ApiImplicitParam(name = "memberName", value = "회원 이름", dataTypeClass = String.class),
@ApiImplicitParam(name = "hpno", value = "휴대폰 번호") @ApiImplicitParam(name = "hpno", value = "휴대폰 번호", dataTypeClass = String.class)
}) })
public ResponseEntity<? extends BasicResponse> sendForId(String memberName, String hpno) { public ResponseEntity<? extends BasicResponse> sendForId(String memberName, String hpno) {
Map<String, Object> resultMap = new HashMap<String, Object>(); Map<String, Object> resultMap = new HashMap<String, Object>();
@ -157,8 +157,8 @@ public class AcntCrtfyhpController {
@ApiOperation(value = "회원 아이디 찾기") @ApiOperation(value = "회원 아이디 찾기")
@Tag(name = "휴대폰 인증 관리", description = "회원 휴대폰 인증 관련 API") @Tag(name = "휴대폰 인증 관리", description = "회원 휴대폰 인증 관련 API")
@ApiImplicitParams({ @ApiImplicitParams({
@ApiImplicitParam(name = "memberName",value = "회원이름"), @ApiImplicitParam(name = "memberName",value = "회원이름", dataTypeClass = String.class),
@ApiImplicitParam(name = "hpno",value = "휴대폰번호") @ApiImplicitParam(name = "hpno",value = "휴대폰번호", dataTypeClass = String.class)
}) })
public ResponseEntity<? extends BasicResponse> findUserId(String memberName, String hpno) { public ResponseEntity<? extends BasicResponse> findUserId(String memberName, String hpno) {
Map<String, Object> resultMap = new HashMap<String, Object>(); Map<String, Object> resultMap = new HashMap<String, Object>();
@ -191,8 +191,8 @@ public class AcntCrtfyhpController {
@ApiOperation(value = "비밀번호 찾기 시 인증번호 발송") @ApiOperation(value = "비밀번호 찾기 시 인증번호 발송")
@Tag(name = "휴대폰 인증 관리", description = "회원 휴대폰 인증 관련 API") @Tag(name = "휴대폰 인증 관리", description = "회원 휴대폰 인증 관련 API")
@ApiImplicitParams({ @ApiImplicitParams({
@ApiImplicitParam(name = "userId",value = "사용자ID"), @ApiImplicitParam(name = "userId",value = "사용자ID", dataTypeClass = String.class),
@ApiImplicitParam(name = "hpno",value = "휴대폰번호") @ApiImplicitParam(name = "hpno",value = "휴대폰번호", dataTypeClass = String.class)
}) })
public ResponseEntity<? extends BasicResponse> sendForPw(String userId, String hpno) { public ResponseEntity<? extends BasicResponse> sendForPw(String userId, String hpno) {
Map<String, Object> resultMap = new HashMap<String, Object>(); Map<String, Object> resultMap = new HashMap<String, Object>();
@ -224,9 +224,9 @@ public class AcntCrtfyhpController {
@ApiOperation(value = "비밀번호 찾기 및 업데이트") @ApiOperation(value = "비밀번호 찾기 및 업데이트")
@Tag(name = "휴대폰 인증 관리", description = "회원 휴대폰 인증 관련 API") @Tag(name = "휴대폰 인증 관리", description = "회원 휴대폰 인증 관련 API")
@ApiImplicitParams({ @ApiImplicitParams({
@ApiImplicitParam(name = "userID",value = "사용자ID"), @ApiImplicitParam(name = "userID",value = "사용자ID", dataTypeClass = String.class),
@ApiImplicitParam(name = "hpno",value = "휴대폰번호"), @ApiImplicitParam(name = "hpno",value = "휴대폰번호", dataTypeClass = String.class),
@ApiImplicitParam(name = "newPw",value = "새로운 비밀번호") @ApiImplicitParam(name = "newPw",value = "새로운 비밀번호", dataTypeClass = String.class)
}) })
public ResponseEntity<? extends BasicResponse> updatePw(String userId, String hpno, String newPw) throws Exception { public ResponseEntity<? extends BasicResponse> updatePw(String userId, String hpno, String newPw) throws Exception {
Map<String, Object> resultMap = new HashMap<String, Object>(); Map<String, Object> resultMap = new HashMap<String, Object>();

4
src/main/java/com/palnet/biz/api/acnt/cstmr/controller/AcntCstmrController.java

@ -81,7 +81,7 @@ public class AcntCstmrController {
@GetMapping(value = "/profile/{cstmrSno}") @GetMapping(value = "/profile/{cstmrSno}")
@ApiOperation(value = "회원 정보") @ApiOperation(value = "회원 정보")
@Tag(name = "회원관리", description = "회원 관련 API") @Tag(name = "회원관리", description = "회원 관련 API")
@ApiImplicitParam(name = "cstmrSno",value = "고객일련번호") @ApiImplicitParam(name = "cstmrSno",value = "고객일련번호", dataTypeClass = Integer.class)
public ResponseEntity<? extends BasicResponse> mypage(@PathVariable Integer cstmrSno){ public ResponseEntity<? extends BasicResponse> mypage(@PathVariable Integer cstmrSno){
List<AnctCstmerRlModel> result = null; List<AnctCstmerRlModel> result = null;
@ -150,7 +150,7 @@ public class AcntCstmrController {
@PostMapping(value = "/profile/delete/{cstmrSno}") @PostMapping(value = "/profile/delete/{cstmrSno}")
@ApiOperation(value = "회원 탈퇴") @ApiOperation(value = "회원 탈퇴")
@Tag(name = "회원관리", description = "회원 관련 API") @Tag(name = "회원관리", description = "회원 관련 API")
@ApiImplicitParam(name = "cstmrSno",value = "고객일련번호") @ApiImplicitParam(name = "cstmrSno",value = "고객일련번호", dataTypeClass = Integer.class)
public ResponseEntity<? extends BasicResponse> userDelete(@PathVariable Integer cstmrSno){ public ResponseEntity<? extends BasicResponse> userDelete(@PathVariable Integer cstmrSno){
Map<String, Object> resultMap = new HashMap<String, Object>(); Map<String, Object> resultMap = new HashMap<String, Object>();
try { try {

8
src/main/java/com/palnet/biz/api/acnt/jwt/controller/JwtAuthenticationController.java

@ -84,8 +84,8 @@ public class JwtAuthenticationController {
@GetMapping(value = "/profile/{cstmrSno}") @GetMapping(value = "/profile/{cstmrSno}")
@ApiOperation(value = "로그인한 회원의 정보") @ApiOperation(value = "로그인한 회원의 정보")
@Tag(name = "JWT 토큰 이용", description = "JWT 토큰 관련 API") @Tag(name = "JWT 토큰 이용", description = "JWT 토큰 관련 API")
@ApiImplicitParam(name = "cstmrSno",value = "고객일련번호") @ApiImplicitParam(name = "cstmrSno",value = "고객일련번호", dataTypeClass = Integer.class)
public ResponseEntity<? extends BasicResponse> proflie(@PathVariable int cstmrSno) throws Exception{ public ResponseEntity<? extends BasicResponse> proflie(@PathVariable Integer cstmrSno) throws Exception{
JwtProfileRsModel result = service.profile(cstmrSno); JwtProfileRsModel result = service.profile(cstmrSno);
if(result == null) { if(result == null) {
@ -127,8 +127,8 @@ public class JwtAuthenticationController {
@GetMapping(value = "/logout/{cstmrSno}") @GetMapping(value = "/logout/{cstmrSno}")
@ApiOperation(value = "로그아웃 한 회원의 정보") @ApiOperation(value = "로그아웃 한 회원의 정보")
@Tag(name = "JWT 토큰 이용", description = "JWT 토큰 관련 API") @Tag(name = "JWT 토큰 이용", description = "JWT 토큰 관련 API")
@ApiImplicitParam(name = "cstmrSno",value = "고객일련번호") @ApiImplicitParam(name = "cstmrSno",value = "고객일련번호", dataTypeClass = Integer.class)
public ResponseEntity<? extends BasicResponse> logout(@PathVariable int cstmrSno) throws Exception{ public ResponseEntity<? extends BasicResponse> logout(@PathVariable Integer cstmrSno) throws Exception{
// if(cstmrSno == null || !(body.get("cstmrSno") instanceof Integer)) { // if(cstmrSno == null || !(body.get("cstmrSno") instanceof Integer)) {
// return ResponseEntity.status(HttpStatus.OK) // return ResponseEntity.status(HttpStatus.OK)

4
src/main/java/com/palnet/biz/api/anls/hstry/controller/AnlsHstryController.java

@ -70,7 +70,7 @@ public class AnlsHstryController {
@GetMapping(value = "/detail/{id}") @GetMapping(value = "/detail/{id}")
@ApiOperation(value = "비행 현황 상세") @ApiOperation(value = "비행 현황 상세")
@Tag(name = "비행 이력 현황", description = "비행 이력 현황 관련 API") @Tag(name = "비행 이력 현황", description = "비행 이력 현황 관련 API")
@ApiImplicitParam(name = "id",value = "관제ID") @ApiImplicitParam(name = "id",value = "관제ID", dataTypeClass = String.class)
public ResponseEntity<? extends BasicResponse> detail(@PathVariable String id) { public ResponseEntity<? extends BasicResponse> detail(@PathVariable String id) {
AnlsHstryModel result = null; AnlsHstryModel result = null;
@ -91,7 +91,7 @@ public class AnlsHstryController {
@GetMapping(value = "/log/{id}") @GetMapping(value = "/log/{id}")
@ApiOperation(value = "비행 이력 데이터") @ApiOperation(value = "비행 이력 데이터")
@Tag(name = "비행 이력 현황", description = "비행 이력 현황 관련 API") @Tag(name = "비행 이력 현황", description = "비행 이력 현황 관련 API")
@ApiImplicitParam(name = "id",value = "관제ID") @ApiImplicitParam(name = "id",value = "관제ID", dataTypeClass = String.class)
public ResponseEntity<? extends BasicResponse> log(@PathVariable String id) { public ResponseEntity<? extends BasicResponse> log(@PathVariable String id) {
List<AnlsHstryDetailModel> result = null; List<AnlsHstryDetailModel> result = null;
try { try {

6
src/main/java/com/palnet/biz/api/anls/smlt/controller/AnlsSmltController.java

@ -83,7 +83,7 @@ public class AnlsSmltController {
@GetMapping(value = "/hist/{id}") @GetMapping(value = "/hist/{id}")
@ApiOperation(value = "비행 이력 데이터 조회") @ApiOperation(value = "비행 이력 데이터 조회")
@Tag(name = "비행 시뮬레이션", description = "비행 이력 시뮬레이션 관련 API") @Tag(name = "비행 시뮬레이션", description = "비행 이력 시뮬레이션 관련 API")
@ApiImplicitParam(name = "id",value = "관제ID") @ApiImplicitParam(name = "id",value = "관제ID", dataTypeClass = String.class)
public ResponseEntity<? extends BasicResponse> histList(@PathVariable String id) { public ResponseEntity<? extends BasicResponse> histList(@PathVariable String id) {
List<AnlsHstryDetailModel> result = null; List<AnlsHstryDetailModel> result = null;
@ -110,7 +110,7 @@ public class AnlsSmltController {
@GetMapping(value = "/stcs/{id}") @GetMapping(value = "/stcs/{id}")
@ApiOperation(value = "통계 데이터 조회") @ApiOperation(value = "통계 데이터 조회")
@Tag(name = "비행 시뮬레이션", description = "비행 이력 시뮬레이션 관련 API") @Tag(name = "비행 시뮬레이션", description = "비행 이력 시뮬레이션 관련 API")
@ApiImplicitParam(name = "id",value = "관제ID") @ApiImplicitParam(name = "id",value = "관제ID", dataTypeClass = String.class)
public ResponseEntity<? extends BasicResponse> stcsList(@PathVariable String id) { public ResponseEntity<? extends BasicResponse> stcsList(@PathVariable String id) {
List<AnlsSmltStcsModel> result = null; List<AnlsSmltStcsModel> result = null;
@ -137,7 +137,7 @@ public class AnlsSmltController {
@GetMapping(value = "/detail/{id}") @GetMapping(value = "/detail/{id}")
@ApiOperation(value = "비행 상세정보 조회") @ApiOperation(value = "비행 상세정보 조회")
@Tag(name = "비행 시뮬레이션", description = "비행 이력 시뮬레이션 관련 API") @Tag(name = "비행 시뮬레이션", description = "비행 이력 시뮬레이션 관련 API")
@ApiImplicitParam(name = "id",value = "관제ID") @ApiImplicitParam(name = "id",value = "관제ID", dataTypeClass = String.class)
public ResponseEntity<? extends BasicResponse> detail(@PathVariable String id) { public ResponseEntity<? extends BasicResponse> detail(@PathVariable String id) {
AnlsSmltDetailModel result = null; AnlsSmltDetailModel result = null;

8
src/main/java/com/palnet/biz/api/bas/dron/controller/BasDronController.java

@ -91,7 +91,7 @@ public class BasDronController {
@GetMapping(value = "/idntf/list/{id}") @GetMapping(value = "/idntf/list/{id}")
@ApiOperation(value = "식별정보 조회") @ApiOperation(value = "식별정보 조회")
@Tag(name = "드론 컨트롤러", description = "드론 관련 API") @Tag(name = "드론 컨트롤러", description = "드론 관련 API")
@ApiImplicitParam(name = "id",value = "기체일련번호") @ApiImplicitParam(name = "id",value = "기체일련번호", dataTypeClass = Integer.class)
public ResponseEntity<? extends BasicResponse> mylist(@PathVariable Integer id) { public ResponseEntity<? extends BasicResponse> mylist(@PathVariable Integer id) {
List<BasIdntfModel> result = null; List<BasIdntfModel> result = null;
@ -124,7 +124,7 @@ public class BasDronController {
@GetMapping(value = "/detail/{id}") @GetMapping(value = "/detail/{id}")
@ApiOperation(value = "드론 상세 조회") @ApiOperation(value = "드론 상세 조회")
@Tag(name = "드론 컨트롤러", description = "드론 관련 API") @Tag(name = "드론 컨트롤러", description = "드론 관련 API")
@ApiImplicitParam(name = "id",value = "기체일련번호") @ApiImplicitParam(name = "id",value = "기체일련번호", dataTypeClass = Integer.class)
public ResponseEntity<? extends BasicResponse> detail(@PathVariable Integer id) { public ResponseEntity<? extends BasicResponse> detail(@PathVariable Integer id) {
BasDronModel result = null; BasDronModel result = null;
@ -250,7 +250,7 @@ public class BasDronController {
@DeleteMapping(value = "/delete/{id}") @DeleteMapping(value = "/delete/{id}")
@ApiOperation(value = "드론정보 삭제") @ApiOperation(value = "드론정보 삭제")
@Tag(name = "드론 컨트롤러", description = "드론 관련 API") @Tag(name = "드론 컨트롤러", description = "드론 관련 API")
@ApiImplicitParam(name = "id",value = "기체일련번호") @ApiImplicitParam(name = "id",value = "기체일련번호", dataTypeClass = Integer.class)
public ResponseEntity<? extends BasicResponse> delete(@PathVariable Integer id) { public ResponseEntity<? extends BasicResponse> delete(@PathVariable Integer id) {
Map<String , Object> resultMap = new HashMap<String,Object>(); Map<String , Object> resultMap = new HashMap<String,Object>();
@ -284,7 +284,7 @@ public class BasDronController {
@DeleteMapping(value = "/idntf/delete/{id}") @DeleteMapping(value = "/idntf/delete/{id}")
@ApiOperation(value = "식별장치 삭제") @ApiOperation(value = "식별장치 삭제")
@Tag(name = "드론 컨트롤러", description = "드론 관련 API") @Tag(name = "드론 컨트롤러", description = "드론 관련 API")
@ApiImplicitParam(name = "id",value = "식별번호") @ApiImplicitParam(name = "id",value = "식별번호", dataTypeClass = String.class)
public ResponseEntity<? extends BasicResponse> deleteIdntf(@PathVariable String id) { public ResponseEntity<? extends BasicResponse> deleteIdntf(@PathVariable String id) {
Map<String , Object> resultMap = new HashMap<String,Object>(); Map<String , Object> resultMap = new HashMap<String,Object>();

8
src/main/java/com/palnet/biz/api/bas/flight/controller/BasFlightController.java

@ -109,7 +109,7 @@ public class BasFlightController {
@GetMapping(value = "/plan/detail/{planSno}") @GetMapping(value = "/plan/detail/{planSno}")
@ApiOperation(value = "비행계획서 상세 조회") @ApiOperation(value = "비행계획서 상세 조회")
@Tag(name = "비행계획서", description = "비행계획서 관련 API") @Tag(name = "비행계획서", description = "비행계획서 관련 API")
@ApiImplicitParam(name = "planSno",value = "비행계획서일련번호") @ApiImplicitParam(name = "planSno",value = "비행계획서일련번호", dataTypeClass = Integer.class)
public ResponseEntity<? extends BasicResponse> detailPlan(@PathVariable("planSno") Integer planSno) { public ResponseEntity<? extends BasicResponse> detailPlan(@PathVariable("planSno") Integer planSno) {
BasFlightPlanModel result = null; BasFlightPlanModel result = null;
try { try {
@ -179,7 +179,7 @@ public class BasFlightController {
@DeleteMapping(value = "/plan/delete/{planSno}") @DeleteMapping(value = "/plan/delete/{planSno}")
@ApiOperation(value = "비행계획서 삭제") @ApiOperation(value = "비행계획서 삭제")
@Tag(name = "비행계획서", description = "비행계획서 관련 API") @Tag(name = "비행계획서", description = "비행계획서 관련 API")
@ApiImplicitParam(name = "planSno",value = "비행계획서일련번호") @ApiImplicitParam(name = "planSno",value = "비행계획서일련번호", dataTypeClass = Integer.class)
public ResponseEntity<? extends BasicResponse> deletePlan(@PathVariable("planSno") Integer planSno) { public ResponseEntity<? extends BasicResponse> deletePlan(@PathVariable("planSno") Integer planSno) {
Map<String, Object> resultMap = new HashMap<String, Object>(); Map<String, Object> resultMap = new HashMap<String, Object>();
try { try {
@ -204,7 +204,7 @@ public class BasFlightController {
@GetMapping(value = "/plan/pilot/{groupId}") @GetMapping(value = "/plan/pilot/{groupId}")
@ApiOperation(value = "그룹의 조종사 조회") @ApiOperation(value = "그룹의 조종사 조회")
@Tag(name = "비행계획서", description = "비행계획서 관련 API") @Tag(name = "비행계획서", description = "비행계획서 관련 API")
@ApiImplicitParam(name = "groupId",value = "그룹ID") @ApiImplicitParam(name = "groupId",value = "그룹ID", dataTypeClass = String.class)
public ResponseEntity<? extends BasicResponse> findPilot(@PathVariable("groupId") String groupId) { public ResponseEntity<? extends BasicResponse> findPilot(@PathVariable("groupId") String groupId) {
List<BasFlightPlanPilotModel> result = null; List<BasFlightPlanPilotModel> result = null;
try { try {
@ -223,7 +223,7 @@ public class BasFlightController {
@GetMapping(value = "/plan/arcrft/{groupId}") @GetMapping(value = "/plan/arcrft/{groupId}")
@ApiOperation(value = "그룹의 기체 조회") @ApiOperation(value = "그룹의 기체 조회")
@Tag(name = "비행계획서", description = "비행계획서 관련 API") @Tag(name = "비행계획서", description = "비행계획서 관련 API")
@ApiImplicitParam(name = "groupId",value = "그룹ID") @ApiImplicitParam(name = "groupId",value = "그룹ID", dataTypeClass = String.class)
public ResponseEntity<? extends BasicResponse> findArcrft(@PathVariable("groupId") String groupId) { public ResponseEntity<? extends BasicResponse> findArcrft(@PathVariable("groupId") String groupId) {
List<BasFlightPlanArcrftModel> result = null; List<BasFlightPlanArcrftModel> result = null;
try { try {

10
src/main/java/com/palnet/biz/api/bas/group/controller/BasGroupController.java

@ -73,7 +73,7 @@ public class BasGroupController {
@GetMapping(value = "/mylist") @GetMapping(value = "/mylist")
@ApiOperation(value = "나의 그룹 목록 조회") @ApiOperation(value = "나의 그룹 목록 조회")
@Tag(name = "그룹 컨트롤러", description = "그룹 관련 API") @Tag(name = "그룹 컨트롤러", description = "그룹 관련 API")
@ApiImplicitParam(name = "cstmrSno",value = "고객일련번호") @ApiImplicitParam(name = "cstmrSno",value = "고객일련번호", dataTypeClass = Integer.class)
public ResponseEntity<? extends BasicResponse> mylist(Integer cstmrSno) { public ResponseEntity<? extends BasicResponse> mylist(Integer cstmrSno) {
List<BasGroupModel> result = null; List<BasGroupModel> result = null;
@ -107,7 +107,7 @@ public class BasGroupController {
@GetMapping(value = "/joinlist") @GetMapping(value = "/joinlist")
@ApiOperation(value = "나의 그룹 - 참여 그룹 목록 조회") @ApiOperation(value = "나의 그룹 - 참여 그룹 목록 조회")
@Tag(name = "그룹 컨트롤러", description = "그룹 관련 API") @Tag(name = "그룹 컨트롤러", description = "그룹 관련 API")
@ApiImplicitParam(name = "cstmrSno",value = "고객일련번호") @ApiImplicitParam(name = "cstmrSno",value = "고객일련번호", dataTypeClass = Integer.class)
public ResponseEntity<? extends BasicResponse> joinList(Integer cstmrSno) { public ResponseEntity<? extends BasicResponse> joinList(Integer cstmrSno) {
List<BasGroupJoinModel> result = null; List<BasGroupJoinModel> result = null;
@ -140,7 +140,7 @@ public class BasGroupController {
@GetMapping(value = "/grouplist") @GetMapping(value = "/grouplist")
@ApiOperation(value = "그룹 목록 조회") @ApiOperation(value = "그룹 목록 조회")
@Tag(name = "그룹 컨트롤러", description = "그룹 관련 API") @Tag(name = "그룹 컨트롤러", description = "그룹 관련 API")
@ApiImplicitParam(name = "cstmrSno",value = "고객일련번호") @ApiImplicitParam(name = "cstmrSno",value = "고객일련번호", dataTypeClass = Integer.class)
public ResponseEntity<? extends BasicResponse> grouplist(Integer cstmrSno) { public ResponseEntity<? extends BasicResponse> grouplist(Integer cstmrSno) {
List<BasGroupJoinModel> result = null; List<BasGroupJoinModel> result = null;
@ -198,7 +198,7 @@ public class BasGroupController {
@GetMapping(value = "/detail/{id}") @GetMapping(value = "/detail/{id}")
@ApiOperation(value = "그룹 상세 조회") @ApiOperation(value = "그룹 상세 조회")
@Tag(name = "그룹 컨트롤러", description = "그룹 관련 API") @Tag(name = "그룹 컨트롤러", description = "그룹 관련 API")
@ApiImplicitParam(name = "id",value = "그룹ID") @ApiImplicitParam(name = "id",value = "그룹ID", dataTypeClass = String.class)
public ResponseEntity<? extends BasicResponse> detail(@PathVariable String id) { public ResponseEntity<? extends BasicResponse> detail(@PathVariable String id) {
BasGroupModel result = null; BasGroupModel result = null;
@ -284,7 +284,7 @@ public class BasGroupController {
@DeleteMapping(value = "/delete/{id}") @DeleteMapping(value = "/delete/{id}")
@ApiOperation(value = "그룹 삭제") @ApiOperation(value = "그룹 삭제")
@Tag(name = "그룹 컨트롤러", description = "그룹 관련 API") @Tag(name = "그룹 컨트롤러", description = "그룹 관련 API")
@ApiImplicitParam(name = "id",value = "그룹ID") @ApiImplicitParam(name = "id",value = "그룹ID", dataTypeClass = String.class)
public ResponseEntity<? extends BasicResponse> delete(@PathVariable String id) { public ResponseEntity<? extends BasicResponse> delete(@PathVariable String id) {
Map<String , Object> resultMap = new HashMap<String,Object>(); Map<String , Object> resultMap = new HashMap<String,Object>();

12
src/main/java/com/palnet/biz/api/ctr/cntrl/controller/CtrCntrlController.java

@ -44,7 +44,7 @@ public class CtrCntrlController {
@GetMapping(value = "/history/{id}") @GetMapping(value = "/history/{id}")
@ApiOperation(value = "TODO 드론 관제 이력 목록 (Socket 분리 전)") @ApiOperation(value = "TODO 드론 관제 이력 목록 (Socket 분리 전)")
@Tag(name = "드론 관제 시스템", description = "드론 관제 관련 API") @Tag(name = "드론 관제 시스템", description = "드론 관제 관련 API")
@ApiImplicitParam(name = "id",value = "관제ID") @ApiImplicitParam(name = "id",value = "관제ID", dataTypeClass = String.class)
public ResponseEntity<? extends BasicResponse> historyList(@PathVariable String id) { public ResponseEntity<? extends BasicResponse> historyList(@PathVariable String id) {
List<GPHistoryModel> result = null; List<GPHistoryModel> result = null;
@ -69,7 +69,7 @@ public class CtrCntrlController {
@GetMapping(value = "/detail/{id}") @GetMapping(value = "/detail/{id}")
@ApiOperation(value = "TODO 드론 관제 상세 정보") @ApiOperation(value = "TODO 드론 관제 상세 정보")
@Tag(name = "드론 관제 시스템", description = "드론 관제 관련 API") @Tag(name = "드론 관제 시스템", description = "드론 관제 관련 API")
@ApiImplicitParam(name = "id",value = "관제ID") @ApiImplicitParam(name = "id",value = "관제ID", dataTypeClass = String.class)
public ResponseEntity<? extends BasicResponse> detail(@PathVariable String id) { public ResponseEntity<? extends BasicResponse> detail(@PathVariable String id) {
CtrCntrlDtlModel result = null; CtrCntrlDtlModel result = null;
@ -94,7 +94,7 @@ public class CtrCntrlController {
@GetMapping(value = "/history/list/{id}") @GetMapping(value = "/history/list/{id}")
@ApiOperation(value = "TODO 드론 관제 '실시간' 이력 목록") @ApiOperation(value = "TODO 드론 관제 '실시간' 이력 목록")
@Tag(name = "드론 관제 시스템", description = "드론 관제 관련 API") @Tag(name = "드론 관제 시스템", description = "드론 관제 관련 API")
@ApiImplicitParam(name = "id",value = "관제ID") @ApiImplicitParam(name = "id",value = "관제ID", dataTypeClass = String.class)
public ResponseEntity<? extends BasicResponse> history(@PathVariable String id) { public ResponseEntity<? extends BasicResponse> history(@PathVariable String id) {
List<GPHistoryModel> history; List<GPHistoryModel> history;
@ -117,7 +117,7 @@ public class CtrCntrlController {
@GetMapping("/group") @GetMapping("/group")
@ApiOperation(value = "TODO 비행 관제 사용자 권한 정보") @ApiOperation(value = "TODO 비행 관제 사용자 권한 정보")
@Tag(name = "드론 관제 시스템", description = "드론 관제 관련 API") @Tag(name = "드론 관제 시스템", description = "드론 관제 관련 API")
@ApiImplicitParam(name = "cstmrSno",value = "고객일련번호") @ApiImplicitParam(name = "cstmrSno",value = "고객일련번호", dataTypeClass = Integer.class)
public ResponseEntity<? extends BasicResponse> findGroupAuthInfo(@RequestParam Integer cstmrSno) { public ResponseEntity<? extends BasicResponse> findGroupAuthInfo(@RequestParam Integer cstmrSno) {
List<CtrCntrlGroupModel> list; List<CtrCntrlGroupModel> list;
@ -141,7 +141,7 @@ public class CtrCntrlController {
@GetMapping("/flight_plan/{idntfNum}") @GetMapping("/flight_plan/{idntfNum}")
@ApiOperation(value = "TODO 비행 관제 사용자 비행 계획서 정보") @ApiOperation(value = "TODO 비행 관제 사용자 비행 계획서 정보")
@Tag(name = "드론 관제 시스템", description = "드론 관제 관련 API") @Tag(name = "드론 관제 시스템", description = "드론 관제 관련 API")
@ApiImplicitParam(name = "idtfNum",value = "식별번호") @ApiImplicitParam(name = "idtfNum",value = "식별번호", dataTypeClass = String.class)
public ResponseEntity<? extends BasicResponse> findFlightPlan(@PathVariable("idntfNum") String idntfNum) { public ResponseEntity<? extends BasicResponse> findFlightPlan(@PathVariable("idntfNum") String idntfNum) {
List<BasFlightPlanModel> list; List<BasFlightPlanModel> list;
@ -165,7 +165,7 @@ public class CtrCntrlController {
@GetMapping(value = "/warn/detail/{id}") @GetMapping(value = "/warn/detail/{id}")
@ApiOperation(value = "TODO 드론 운행 시작 후 알람 목록") @ApiOperation(value = "TODO 드론 운행 시작 후 알람 목록")
@Tag(name = "드론 관제 시스템", description = "드론 관제 관련 API") @Tag(name = "드론 관제 시스템", description = "드론 관제 관련 API")
@ApiImplicitParam(name = "id",value = "관제ID") @ApiImplicitParam(name = "id",value = "관제ID", dataTypeClass = String.class)
public ResponseEntity<? extends BasicResponse> warnDetail(@PathVariable String id){ public ResponseEntity<? extends BasicResponse> warnDetail(@PathVariable String id){
List<CtrCntrlWarnLogModel> warnLog; List<CtrCntrlWarnLogModel> warnLog;

8
src/main/java/com/palnet/biz/api/main/dash/controller/MainDashController.java

@ -50,7 +50,7 @@ public class MainDashController {
@GetMapping(value = "/stcs/day") @GetMapping(value = "/stcs/day")
@ApiOperation(value = "일 별 비행횟수 통계") @ApiOperation(value = "일 별 비행횟수 통계")
@Tag(name = "메인화면 컨트롤러", description = "메인화면 관련 API") @Tag(name = "메인화면 컨트롤러", description = "메인화면 관련 API")
@ApiImplicitParam(name = "yyyymm",value = "날짜") @ApiImplicitParam(name = "yyyymm",value = "날짜", dataTypeClass = String.class)
public ResponseEntity<? extends BasicResponse> stcsDay(String yyyymm) { public ResponseEntity<? extends BasicResponse> stcsDay(String yyyymm) {
List<MainDashStcsModel> result = null; List<MainDashStcsModel> result = null;
@ -85,7 +85,7 @@ public class MainDashController {
@GetMapping(value = "/stcs/area") @GetMapping(value = "/stcs/area")
@ApiOperation(value = "TOP5 지역 별 비행횟수 통계") @ApiOperation(value = "TOP5 지역 별 비행횟수 통계")
@Tag(name = "메인화면 컨트롤러", description = "메인화면 관련 API") @Tag(name = "메인화면 컨트롤러", description = "메인화면 관련 API")
@ApiImplicitParam(name = "yyyymm",value = "날짜") @ApiImplicitParam(name = "yyyymm",value = "날짜", dataTypeClass = String.class)
public ResponseEntity<? extends BasicResponse> stcsArea(String yyyymm) { public ResponseEntity<? extends BasicResponse> stcsArea(String yyyymm) {
List<MainDashStcsModel> result = null; List<MainDashStcsModel> result = null;
@ -117,7 +117,7 @@ public class MainDashController {
@GetMapping(value = "/group/list") @GetMapping(value = "/group/list")
@ApiOperation(value = "본인이 생성한 그룹 정보") @ApiOperation(value = "본인이 생성한 그룹 정보")
@Tag(name = "메인화면 컨트롤러", description = "메인화면 관련 API") @Tag(name = "메인화면 컨트롤러", description = "메인화면 관련 API")
@ApiImplicitParam(name = "cstmrSno",value = "고객일련번호") @ApiImplicitParam(name = "cstmrSno",value = "고객일련번호", dataTypeClass = Integer.class)
public ResponseEntity<? extends BasicResponse> groupList(Integer cstmrSno) { public ResponseEntity<? extends BasicResponse> groupList(Integer cstmrSno) {
List<Map> result = null; List<Map> result = null;
@ -144,7 +144,7 @@ public class MainDashController {
@GetMapping(value = "/arcrft/list") @GetMapping(value = "/arcrft/list")
@ApiOperation(value = "기체 정보 리스트") @ApiOperation(value = "기체 정보 리스트")
@Tag(name = "메인화면 컨트롤러", description = "메인화면 관련 API") @Tag(name = "메인화면 컨트롤러", description = "메인화면 관련 API")
@ApiImplicitParam(name = "cstmrSno",value = "고객일련번호") @ApiImplicitParam(name = "cstmrSno",value = "고객일련번호", dataTypeClass = Integer.class)
public ResponseEntity<? extends BasicResponse> arcrftList(Integer cstmrSno) { public ResponseEntity<? extends BasicResponse> arcrftList(Integer cstmrSno) {
List<MainDashListModel> result = null; List<MainDashListModel> result = null;

Loading…
Cancel
Save