Class ListPost

java.lang.Object
com.patreonshout.beans.ListPost

@Entity
public class ListPost
extends java.lang.Object
POJO that relates to the list_posts table in our database
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected int listId
    listId is the id of the list associated with the list_posts
    protected int listPostsId
    listPostsId is the index/primary key for the list_posts table in our database
    protected int postId
    postId is the id of the post associated with the list_posts
  • Constructor Summary

    Constructors
    Constructor Description
    ListPost()  
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • listPostsId

      protected int listPostsId
      listPostsId is the index/primary key for the list_posts table in our database
    • listId

      protected int listId
      listId is the id of the list associated with the list_posts
    • postId

      protected int postId
      postId is the id of the post associated with the list_posts
  • Constructor Details

    • ListPost

      public ListPost()