경력정보 연동 작업중 중간저장.
parent
54c7d41d9c
commit
5445aa60ce
|
|
@ -72,4 +72,5 @@ public class KwmsController {
|
||||||
}
|
}
|
||||||
return mav;
|
return mav;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,54 @@
|
||||||
|
package com.dbnt.faisp.kwms.model;
|
||||||
|
|
||||||
|
import com.dbnt.faisp.config.BaseModel;
|
||||||
|
import lombok.Getter;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
import lombok.Setter;
|
||||||
|
import org.hibernate.annotations.DynamicInsert;
|
||||||
|
import org.hibernate.annotations.DynamicUpdate;
|
||||||
|
|
||||||
|
import javax.persistence.Column;
|
||||||
|
import javax.persistence.Entity;
|
||||||
|
import javax.persistence.Id;
|
||||||
|
import javax.persistence.Table;
|
||||||
|
import java.time.LocalDateTime;
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
@Setter
|
||||||
|
@Entity
|
||||||
|
@NoArgsConstructor
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@Table(name = "V_HORD_YUNDONG_STAT")
|
||||||
|
public class VHordYundongStat extends BaseModel{
|
||||||
|
@Id
|
||||||
|
@Column(name = "HORD_YUNDONG_CD")
|
||||||
|
private String hordYundongCd;
|
||||||
|
@Column(name = "DIC_CODE")
|
||||||
|
private String dicCode;
|
||||||
|
@Column(name = "IMYONG_GUBUN_CD")
|
||||||
|
private String imyongGubunCd;
|
||||||
|
@Column(name = "IMYONG_GUBUN_NM")
|
||||||
|
private String imyongGubunNm;
|
||||||
|
@Column(name = "BUSEO_CD")
|
||||||
|
private String buseoCd;
|
||||||
|
@Column(name = "JIKGEUP_CD")
|
||||||
|
private String jikgeupCd;
|
||||||
|
@Column(name = "START_DATE")
|
||||||
|
private LocalDateTime startDate;
|
||||||
|
@Column(name = "END_DATE")
|
||||||
|
private LocalDateTime endDate;
|
||||||
|
@Column(name = "WORK_DAY")
|
||||||
|
private Integer workDay;
|
||||||
|
@Column(name = "WORK_MONTH")
|
||||||
|
private Integer workMonth;
|
||||||
|
@Column(name = "WORK_MONTH_DESC")
|
||||||
|
private String workMonthDesc;
|
||||||
|
@Column(name = "IMYONGBUSEO_CHONGCHING")
|
||||||
|
private String imyongbuseoChongching;
|
||||||
|
@Column(name = "IMYONG_JIKGEUP_NM")
|
||||||
|
private String imyongJikgeupNm;
|
||||||
|
@Column(name = "SYS_DATE")
|
||||||
|
private LocalDateTime sysDate;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,12 @@
|
||||||
|
package com.dbnt.faisp.kwms.repository;
|
||||||
|
|
||||||
|
import com.dbnt.faisp.kwms.model.VHordYundongStat;
|
||||||
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
|
public interface VHordYundongStatRepository extends JpaRepository<VHordYundongStat, String> {
|
||||||
|
|
||||||
|
List<VHordYundongStat> findByDicCode(String dicCode);
|
||||||
|
}
|
||||||
|
|
@ -5,6 +5,14 @@ spring.servlet.multipart.location=/docker/faisp/uploadFiles
|
||||||
spring.servlet.multipart.max-file-size=200MB
|
spring.servlet.multipart.max-file-size=200MB
|
||||||
spring.servlet.multipart.max-request-size=500MB
|
spring.servlet.multipart.max-request-size=500MB
|
||||||
|
|
||||||
|
#file
|
||||||
|
file.dir=C:\\faispUploadFiles
|
||||||
|
file.dir.vulnerable=/vulnerable
|
||||||
|
file.dir.part=/part
|
||||||
|
file.dir.equip=/equip
|
||||||
|
file.dir.sailor=sailor
|
||||||
|
file.dir.affair=affair
|
||||||
|
|
||||||
#thymeleaf
|
#thymeleaf
|
||||||
spring.thymeleaf.prefix=classpath:templates/
|
spring.thymeleaf.prefix=classpath:templates/
|
||||||
spring.thymeleaf.check-template-location=true
|
spring.thymeleaf.check-template-location=true
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@
|
||||||
<div class="mb-3 row justify-content-center">
|
<div class="mb-3 row justify-content-center">
|
||||||
<label for="editor" class="col-sm-2 col-form-label text-center">내용</label>
|
<label for="editor" class="col-sm-2 col-form-label text-center">내용</label>
|
||||||
<div class="col-sm-10">
|
<div class="col-sm-10">
|
||||||
<div id="editor" name='editor'></div>
|
<div id="editor"></div>
|
||||||
<textarea id="content" class="d-none" th:utext="${info.content}"></textarea>
|
<textarea id="content" class="d-none" th:utext="${info.content}"></textarea>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue