portfolio
Toggle table of contents
0.0.1-SNAPSHOT
jvm
Platform filter
jvm
Switch theme
Search in API
portfolio
portfolio
/
org.project.portfolio.notification.entity
/
Notification
Notification
@
Entity
@
SoftDelete
(
columnName
=
"is_deleted"
)
class
Notification
(
val
id
:
Long
=
0
,
val
title
:
String
,
val
content
:
String
,
val
receiver
:
User
,
val
sender
:
String
,
var
createdAt
:
Instant
=
Instant.now()
,
var
updatedAt
:
Instant
=
Instant.now()
)
:
AbstractAggregateRoot
<
Notification
>
알림 엔티티
Members
Constructors
Notification
Link copied to clipboard
constructor
(
id
:
Long
=
0
,
title
:
String
,
content
:
String
,
receiver
:
User
,
sender
:
String
,
createdAt
:
Instant
=
Instant.now()
,
updatedAt
:
Instant
=
Instant.now()
)
Properties
content
Link copied to clipboard
val
content
:
String
알림 내용
created
At
Link copied to clipboard
var
createdAt
:
Instant
id
Link copied to clipboard
val
id
:
Long
=
0
알림 ID
receiver
Link copied to clipboard
val
receiver
:
User
알림 수신자
sender
Link copied to clipboard
val
sender
:
String
전송 주체
title
Link copied to clipboard
val
title
:
String
알림 제목
updated
At
Link copied to clipboard
var
updatedAt
:
Instant