|
|
@ -1,30 +1,24 @@
|
|
|
|
package cokr.xit.ens.biz.iup.billpay.presentation;
|
|
|
|
package cokr.xit.ens.biz.iup.billpay.presentation;
|
|
|
|
|
|
|
|
|
|
|
|
import cokr.xit.ens.biz.iup.billpay.service.IupPayUseSysServiceFactory;
|
|
|
|
import java.util.*;
|
|
|
|
import cokr.xit.ens.core.exception.EnsException;
|
|
|
|
|
|
|
|
import cokr.xit.ens.core.exception.code.EnsErrCd;
|
|
|
|
import org.springframework.http.*;
|
|
|
|
import io.swagger.v3.oas.annotations.Operation;
|
|
|
|
|
|
|
|
import io.swagger.v3.oas.annotations.Parameter;
|
|
|
|
|
|
|
|
import io.swagger.v3.oas.annotations.Parameters;
|
|
|
|
|
|
|
|
import io.swagger.v3.oas.annotations.enums.ParameterIn;
|
|
|
|
|
|
|
|
import io.swagger.v3.oas.annotations.media.Content;
|
|
|
|
|
|
|
|
import io.swagger.v3.oas.annotations.media.ExampleObject;
|
|
|
|
|
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
|
|
|
|
|
import lombok.RequiredArgsConstructor;
|
|
|
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
|
|
import org.springframework.http.HttpStatus;
|
|
|
|
|
|
|
|
import org.springframework.http.MediaType;
|
|
|
|
|
|
|
|
import org.springframework.http.ResponseEntity;
|
|
|
|
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.Arrays;
|
|
|
|
import cokr.xit.ens.biz.iup.billpay.service.*;
|
|
|
|
import java.util.Map;
|
|
|
|
import cokr.xit.ens.core.exception.*;
|
|
|
|
|
|
|
|
import cokr.xit.ens.core.exception.code.*;
|
|
|
|
|
|
|
|
import io.swagger.v3.oas.annotations.*;
|
|
|
|
|
|
|
|
import io.swagger.v3.oas.annotations.enums.*;
|
|
|
|
|
|
|
|
import io.swagger.v3.oas.annotations.media.*;
|
|
|
|
|
|
|
|
import io.swagger.v3.oas.annotations.tags.*;
|
|
|
|
|
|
|
|
import lombok.*;
|
|
|
|
|
|
|
|
import lombok.extern.slf4j.*;
|
|
|
|
|
|
|
|
|
|
|
|
@Tag(name = "IupPayUseSysController")
|
|
|
|
@Tag(name = "IupPayUseSysController", description = "<strong>결제 - 모바일 페이지로딩시 jsp에서 호출</strong>")
|
|
|
|
@Slf4j
|
|
|
|
@Slf4j
|
|
|
|
@RequiredArgsConstructor
|
|
|
|
@RequiredArgsConstructor
|
|
|
|
@RestController
|
|
|
|
@RestController
|
|
|
|
//public class IupPayUseSysController implements PayUseSysController<ResponseEntity, Map<String, Object>> {
|
|
|
|
|
|
|
|
public class IupPayUseSysController {
|
|
|
|
public class IupPayUseSysController {
|
|
|
|
|
|
|
|
|
|
|
|
private final IupPayUseSysServiceFactory factory;
|
|
|
|
private final IupPayUseSysServiceFactory factory;
|
|
|
|