이지우 VO 추가

This commit is contained in:
jiwoo 2023-12-26 17:17:16 +09:00
parent bc1a03d8d5
commit f3142d00ce

View File

@ -440,7 +440,10 @@ public class VEEduAplctVO extends ComDefaultVO implements Serializable {
public String lctrStrtH;
public String lctrStrtM;
public String lctrEndH;
public String lctrEndM;
public String lctrEndM;
public String eduMdCd; //교육매체 코드
public String feeInsttCd; //강사료지급기관코드
public String getSpecialWorkAllow() {
@ -1944,6 +1947,18 @@ public class VEEduAplctVO extends ComDefaultVO implements Serializable {
public void setLctrEndM(String lctrEndM) {
this.lctrEndM = lctrEndM;
}
public String getEduMdCd() {
return eduMdCd;
}
public void setEduMdCd(String eduMdCd) {
this.eduMdCd = eduMdCd;
}
public String getFeeInsttCd() {
return feeInsttCd;
}
public void setFeeInsttCd(String feeInsttCd) {
this.feeInsttCd = feeInsttCd;
}
}