update postgresjson (mutable entity)

This commit is contained in:
2020-01-22 23:08:58 +01:00
parent e68b5d87ce
commit 3cdd1f3a46
12 changed files with 16 additions and 15 deletions

View File

@@ -1,5 +1,5 @@
package fr.dcproject.entity
import fr.postgresjson.entity.*
import fr.postgresjson.entity.mutable.*
import java.util.*
class Article(

View File

@@ -1,6 +1,6 @@
package fr.dcproject.entity
import fr.postgresjson.entity.*
import fr.postgresjson.entity.mutable.*
import org.joda.time.DateTime
import java.util.*

View File

@@ -1,6 +1,6 @@
package fr.dcproject.entity
import fr.postgresjson.entity.*
import fr.postgresjson.entity.mutable.*
import java.util.*
open class Comment <T : UuidEntity> (

View File

@@ -1,6 +1,6 @@
package fr.dcproject.entity
import fr.postgresjson.entity.*
import fr.postgresjson.entity.mutable.*
import java.util.*
class Constitution(

View File

@@ -1,6 +1,7 @@
package fr.dcproject.entity
import fr.postgresjson.entity.*
import fr.postgresjson.entity.EntityI
import fr.postgresjson.entity.mutable.*
import java.util.*
interface ExtraI <T : EntityI> :

View File

@@ -1,5 +1,5 @@
package fr.dcproject.entity
import fr.postgresjson.entity.UuidEntity
import fr.postgresjson.entity.mutable.UuidEntity
import java.util.*
class Follow <T : UuidEntity> (

View File

@@ -1,6 +1,6 @@
package fr.dcproject.entity
import fr.postgresjson.entity.*
import fr.postgresjson.entity.mutable.*
import io.ktor.auth.Principal
import org.joda.time.DateTime
import java.util.*

View File

@@ -1,8 +1,8 @@
package fr.dcproject.entity
import fr.postgresjson.entity.EntityUpdatedAt
import fr.postgresjson.entity.EntityUpdatedAtImp
import fr.postgresjson.entity.UuidEntity
import fr.postgresjson.entity.mutable.EntityUpdatedAt
import fr.postgresjson.entity.mutable.EntityUpdatedAtImp
import fr.postgresjson.entity.mutable.UuidEntity
import java.util.*
open class Vote <T : UuidEntity> (

View File

@@ -1,8 +1,8 @@
package fr.dcproject.entity
import fr.postgresjson.entity.EntityI
import fr.postgresjson.entity.EntityUpdatedAt
import fr.postgresjson.entity.EntityUpdatedAtImp
import fr.postgresjson.entity.mutable.EntityUpdatedAt
import fr.postgresjson.entity.mutable.EntityUpdatedAtImp
open class VoteAggregation(
val up: Int,

View File

@@ -2,7 +2,7 @@ package fr.dcproject.repository
import fr.postgresjson.connexion.Paginated
import fr.postgresjson.connexion.Requester
import fr.postgresjson.entity.UuidEntity
import fr.postgresjson.entity.mutable.UuidEntity
import fr.postgresjson.repository.RepositoryI
import java.util.*
import fr.dcproject.entity.Article as ArticleEntity

View File

@@ -2,7 +2,7 @@ package fr.dcproject.repository
import fr.postgresjson.connexion.Paginated
import fr.postgresjson.connexion.Requester
import fr.postgresjson.entity.UuidEntity
import fr.postgresjson.entity.mutable.UuidEntity
import fr.postgresjson.repository.RepositoryI
import java.util.*
import fr.dcproject.entity.Article as ArticleEntity

View File

@@ -7,7 +7,7 @@ import fr.dcproject.entity.Constitution
import fr.dcproject.entity.VoteAggregation
import fr.postgresjson.connexion.Paginated
import fr.postgresjson.connexion.Requester
import fr.postgresjson.entity.UuidEntity
import fr.postgresjson.entity.mutable.UuidEntity
import fr.postgresjson.repository.RepositoryI
import java.util.*
import fr.dcproject.entity.Citizen as CitizenEntity