|
@@ -121,17 +121,14 @@ public class BrandController {
|
121
|
121
|
public ResponseEntity<OqScmBrandInfoResModel> infoOqBrand(@ApiIgnore String userId, @RequestBody @Valid OqScmBrandInfoReqModel oqScmBrandInfoReqModel) throws Exception {
|
122
|
122
|
OqScmBrandInfoResModel res = null;
|
123
|
123
|
try {
|
124
|
|
- log.info("BRAND CD===================>" + oqScmBrandInfoReqModel.getBrandCd());
|
125
|
|
- log.info("BRAND ID===================>" + oqScmBrandInfoReqModel.getBrandId());
|
|
124
|
+
|
|
125
|
+ log.info("IF TRANS DATA ===============================");
|
|
126
|
+ log.info(oqScmBrandInfoReqModel.toString());
|
126
|
127
|
|
127
|
128
|
res = oqlinkClient.getScmBrandInfo(HmacUtil.makeHmacValue4OqLink(oqScmBrandInfoReqModel), oqScmBrandInfoReqModel);
|
128
|
|
- log.info("getCode ===================>" + res.getCode() == null ? "" : res.getCode());
|
129
|
|
- log.info("getMessage ===================>" + res.getMessage() == null ? "" : res.getMessage());
|
|
129
|
+ log.info("IF RETURN DATA ===============================");
|
|
130
|
+ log.info(res.toString());
|
130
|
131
|
|
131
|
|
- log.info("getBrandCd===================>" + res.getBrandCd() == null ? "" : res.getBrandCd());
|
132
|
|
- log.info("getBrandId ===================>" + res.getBrandId() == null ? "" : res.getBrandId());
|
133
|
|
- log.info("getBrandNm ===================>" + res.getBrandNm() == null ? "" : res.getBrandNm());
|
134
|
|
- log.info("getCateCd===================>" + res.getCateCd() == null ? "" : res.getCateCd());
|
135
|
132
|
log.info("getDelYn===================>" + res.getDelYn() == null ? "" : res.getDelYn());
|
136
|
133
|
|
137
|
134
|
|