Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Corperate_Project/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="C:/Users/admin/.m2/repository/com/oracle/database/jdbc/ojdbc8/21.7.0.0/ojdbc8-21.7.0.0.jar">
<classpathentry kind="lib" path="C:/Users/DG/.m2/repository/com/oracle/database/jdbc/ojdbc8/21.7.0.0/ojdbc8-21.7.0.0.jar">
<attributes>
<attribute name="module" value="true"/>
</attributes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class LotRestController {

// 판매에서 로트 불러오기
@GetMapping(value="/getLot/{itemNo}", produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
public ResponseEntity<List<String>> getLot(@PathVariable("itemNo") String no) {
public ResponseEntity<List<LotVO>> getLot(@PathVariable("itemNo") String no) {
System.out.println("?:" + no);
return new ResponseEntity<>(service.getLot(no), HttpStatus.OK);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ public List<LotVO> getLot(String no) {

System.out.println(vo);


}
return lists;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Manifest-Version: 1.0
Built-By: admin
Build-Jdk: 11.0.13
Built-By: DG
Build-Jdk: 11.0.16.1
Created-By: Maven Integration for Eclipse