From f3142d00ce1d108f1d6611e8b16b0da9270c37d3 Mon Sep 17 00:00:00 2001 From: jiwoo Date: Tue, 26 Dec 2023 17:17:16 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9D=B4=EC=A7=80=EC=9A=B0=20VO=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../eduInfo/service/VEEduAplctVO.java | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/main/java/kcc/ve/instr/tngrVisitEdu/eduInfo/service/VEEduAplctVO.java b/src/main/java/kcc/ve/instr/tngrVisitEdu/eduInfo/service/VEEduAplctVO.java index 2f2ae667..7df39e3c 100644 --- a/src/main/java/kcc/ve/instr/tngrVisitEdu/eduInfo/service/VEEduAplctVO.java +++ b/src/main/java/kcc/ve/instr/tngrVisitEdu/eduInfo/service/VEEduAplctVO.java @@ -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; + } }