refactor : Long, LocalDateTime 타입 프로퍼티 추가
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
package com.banjjoknim.graphqlkotlin.person
|
||||
|
||||
import java.time.LocalDateTime
|
||||
|
||||
data class Person(
|
||||
var name: String,
|
||||
var age: Long? = 0L,
|
||||
var birthDate: LocalDateTime = LocalDateTime.now()
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user