외사통계 - 중국어선 단속시스템 입력 수정

master
Hyung Geun 2022-04-21 15:20:41 +09:00
parent c47f9d5262
commit b56f41671b
1 changed files with 3 additions and 3 deletions

View File

@ -267,7 +267,7 @@ public class ArrestVO {
/** /**
* - * -
*/ */
private String shipCrewCnt = ""; private int shipCrewCnt = 0;
/** /**
* - * -
*/ */
@ -895,11 +895,11 @@ public class ArrestVO {
this.shipTonnage = shipTonnage; this.shipTonnage = shipTonnage;
} }
public String getShipCrewCnt() { public int getShipCrewCnt() {
return shipCrewCnt; return shipCrewCnt;
} }
public void setShipCrewCnt(String shipCrewCnt) { public void setShipCrewCnt(int shipCrewCnt) {
this.shipCrewCnt = shipCrewCnt; this.shipCrewCnt = shipCrewCnt;
} }