DataJPA/src/main/kotlin/com/chantha/jdbc/jpa/view/Entity.kt
2020-05-16 17:20:48 +07:00

19 lines
372 B
Kotlin

package com.chantha.jdbc.jpa.view
import com.chantha.jdbc.jpa.model.Customer
import com.chantha.jdbc.jpa.model.Gender
fun ViewsInvoice.toView():Customer{
return this.toView2()
}
fun ViewsInvoice.toView2(): Customer{
val data=Customer()
data.id=this.id
data.cusName=this.cusName
data.gender=this.gender
data.orders=this.order
return data
}