File name
Commit message
Commit date
2024-01-15
File name
Commit message
Commit date
2024-01-15
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
2023-12-19
2023-12-26
File name
Commit message
Commit date
File name
Commit message
Commit date
package itn.let.mjo.block.service;
import itn.com.cmm.ComDefaultVO;
public class MjonBlockVO extends ComDefaultVO {
private static final long serialVersionUID = 1L;
private String blockId;
private String userId;
private String phone;
private String name;
private String memo;
private String regDate;
private String blockAlarmYn;
private String rejectLogId;
private Integer blockType; // 수신거부형태(1: 080 자동수신거부, 2: 직접등록)
private Integer blockTypeName;
String[] phoneList;
String[] nameList;
String[] memoList;
private String searchNameUserId;
private Integer isBlockResult; // 수신거부 결과전송 여부(0: 미전송, 1 : 전송완료)
private String admUserId;
public String getAdmUserId() {
return admUserId;
}
public void setAdmUserId(String admUserId) {
this.admUserId = admUserId;
}
public Integer getIsBlockResult() {
return isBlockResult;
}
public void setIsBlockResult(Integer isBlockResult) {
this.isBlockResult = isBlockResult;
}
public String getBlockTypeName() {
String val = "";
if (this.blockType != null) {
if (this.blockType == 1) {
val = "080 자동수신거부";
}
else if (this.blockType == 2) {
val = "직접등록";
}
}
return val;
}
public String getSearchNameUserId() {
return searchNameUserId;
}
public void setSearchNameUserId(String searchNameUserId) {
this.searchNameUserId = searchNameUserId;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getMemo() {
return memo;
}
public void setMemo(String memo) {
this.memo = memo;
}
public String[] getPhoneList() {
return phoneList;
}
public void setPhoneList(String[] phoneList) {
this.phoneList = phoneList;
}
public String[] getNameList() {
return nameList;
}
public void setNameList(String[] nameList) {
this.nameList = nameList;
}
public String[] getMemoList() {
return memoList;
}
public void setMemoList(String[] memoList) {
this.memoList = memoList;
}
public Integer getBlockType() {
return blockType;
}
public void setBlockType(Integer blockType) {
this.blockType = blockType;
}
private String startDate, endDate ; //사용자 페이지 날자 조회
public String getStartDate() {
return startDate;
}
public void setStartDate(String startDate) {
this.startDate = startDate;
}
public String getEndDate() {
return endDate;
}
public void setEndDate(String endDate) {
this.endDate = endDate;
}
public String getBlockId() {
return blockId;
}
public void setBlockId(String blockId) {
this.blockId = blockId;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getRegDate() {
return regDate;
}
public void setRegDate(String regDate) {
this.regDate = regDate;
}
public String getBlockAlarmYn() {
return blockAlarmYn;
}
public void setBlockAlarmYn(String blockAlarmYn) {
this.blockAlarmYn = blockAlarmYn;
}
public String getRejectLogId() {
return rejectLogId;
}
public void setRejectLogId(String rejectLogId) {
this.rejectLogId = rejectLogId;
}
}