parent
a6cc91f02c
commit
d30965b855
@ -0,0 +1,57 @@
|
|||||||
|
package cokr.xit.ens.modules.kkotalk.model;
|
||||||
|
|
||||||
|
import java.time.*;
|
||||||
|
|
||||||
|
import cokr.xit.ens.modules.common.domain.support.*;
|
||||||
|
import io.swagger.v3.oas.annotations.media.*;
|
||||||
|
import lombok.*;
|
||||||
|
import lombok.experimental.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <pre>
|
||||||
|
* description :
|
||||||
|
* packageName : cokr.xit.ens.modules.kkotalk.model
|
||||||
|
* fileName : SendDetailKkoTalkDTO
|
||||||
|
* author : limju
|
||||||
|
* date : 2024 9월 10
|
||||||
|
* ======================================================================
|
||||||
|
* 변경일 변경자 변경 내용
|
||||||
|
* ----------------------------------------------------------------------
|
||||||
|
* 2024 9월 10 limju 최초 생성
|
||||||
|
*
|
||||||
|
* </pre>
|
||||||
|
*/
|
||||||
|
@SuperBuilder
|
||||||
|
@Data
|
||||||
|
@ToString
|
||||||
|
@Schema(name = "SendDetailKkoTalkDTO")
|
||||||
|
@NoArgsConstructor
|
||||||
|
@AllArgsConstructor
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
public class SendDetailKkoTalkDTO extends KkotalkApiDTO.Envelope {
|
||||||
|
private String envelopeId;
|
||||||
|
private String link;
|
||||||
|
private String status;
|
||||||
|
private String sentAt;
|
||||||
|
private String receivedAt;
|
||||||
|
private String readAt;
|
||||||
|
private String authenticatedAt;
|
||||||
|
private String ottVerifiedAt;
|
||||||
|
private String isNotificationUnavailable;
|
||||||
|
private String userNotifiedAt;
|
||||||
|
private String distributionReceivedAt;
|
||||||
|
private String mkJid;
|
||||||
|
private String mkTmpltMsgJsonData;
|
||||||
|
|
||||||
|
private Long sendDetailId;
|
||||||
|
private Long sendMastId;
|
||||||
|
private String errorCode;
|
||||||
|
private String errorMessage;
|
||||||
|
private FieldError error;
|
||||||
|
private String mkBillUseYn;
|
||||||
|
private String billUid;
|
||||||
|
|
||||||
|
// Add created and updated timestamps from BaseEntity if needed
|
||||||
|
private LocalDateTime registAt;
|
||||||
|
private LocalDateTime lastUpdtDt;
|
||||||
|
}
|
Loading…
Reference in New Issue