문자전송 진행중
This commit is contained in:
parent
9e56bc1ee0
commit
01898701bf
32
src/main/java/itn/let/cmm/vo/FileInfoVO.java
Normal file
32
src/main/java/itn/let/cmm/vo/FileInfoVO.java
Normal file
@ -0,0 +1,32 @@
|
||||
package itn.let.cmm.vo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author : 이호영
|
||||
* @fileName : FileInfoVO.java
|
||||
* @date : 2025.01.17
|
||||
* @description : 파일 풀 경로에서 파일명만 가져와 ID 가져올때 사용하는 VO
|
||||
* MjonMsgDetailSentVO 참고
|
||||
* ===========================================================
|
||||
* DATE AUTHOR NOTE
|
||||
* ----------------------------------------------------------- *
|
||||
* 2025.01.17 이호영 최초 생성
|
||||
*
|
||||
*
|
||||
*
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class FileInfoVO implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String atchFileId; // 첨부파일 ID
|
||||
private String fileSn; // 파일 순번
|
||||
|
||||
}
|
||||
@ -6,30 +6,6 @@
|
||||
<%@ page import="itn.com.cmm.LoginVO" %>
|
||||
|
||||
|
||||
<style>
|
||||
/* #detailPopup {
|
||||
min-width: 400px;
|
||||
width: 50%;
|
||||
margin: 0 auto;
|
||||
} */
|
||||
|
||||
/* Tabulator 헤더 높이 조정 */
|
||||
.tabulator .tabulator-header {
|
||||
height: 36px !important; /* 원하는 높이로 설정 */
|
||||
line-height: 25px; /* 텍스트 정렬을 위해 줄 간격 맞추기 */
|
||||
background-color: #ededed;
|
||||
}
|
||||
.tabulator .tabulator-col {
|
||||
vertical-align: middle; /* 텍스트를 중앙에 정렬 */
|
||||
}
|
||||
|
||||
/* Tabulator 헤더 폰트 크기 조정 */
|
||||
.tabulator .tabulator-header .tabulator-col {
|
||||
font-size: 15px; /* 원하는 폰트 크기로 설정 */
|
||||
font-weight: bold; /* 텍스트를 굵게 설정 (옵션) */
|
||||
text-align: center; /* 텍스트 정렬 */
|
||||
}
|
||||
</style>
|
||||
<script type="text/javascript">
|
||||
|
||||
var $tbDtailList = null; //에러 팝업 영역
|
||||
@ -53,16 +29,14 @@ $(document).ready(function(){
|
||||
field: "phone",
|
||||
hozAlign: "center",
|
||||
headerHozAlign: "center",
|
||||
width: 200,
|
||||
headerFormatter: () => "<div style='font-size: 18px; font-weight: bold;'>휴대폰</div>"
|
||||
width: 200
|
||||
},
|
||||
{
|
||||
title: "상세결과",
|
||||
field: "result",
|
||||
hozAlign: "center",
|
||||
headerHozAlign: "center",
|
||||
width: 180,
|
||||
headerFormatter: () => "<div style='font-size: 18px; font-weight: bold;'>상세결과</div>"
|
||||
width: 180
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
Loading…
Reference in New Issue
Block a user