com.liferay.mail.reader.model.FolderTable Maven / Gradle / Ivy
The newest version!
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.mail.reader.model;
import com.liferay.petra.sql.dsl.Column;
import com.liferay.petra.sql.dsl.base.BaseTable;
import java.sql.Types;
import java.util.Date;
/**
* The table class for the "Mail_Folder" database table.
*
* @author Brian Wing Shun Chan
* @see Folder
* @generated
*/
public class FolderTable extends BaseTable {
public static final FolderTable INSTANCE = new FolderTable();
public final Column folderId = createColumn(
"folderId", Long.class, Types.BIGINT, Column.FLAG_PRIMARY);
public final Column companyId = createColumn(
"companyId", Long.class, Types.BIGINT, Column.FLAG_DEFAULT);
public final Column userId = createColumn(
"userId", Long.class, Types.BIGINT, Column.FLAG_DEFAULT);
public final Column userName = createColumn(
"userName", String.class, Types.VARCHAR, Column.FLAG_DEFAULT);
public final Column createDate = createColumn(
"createDate", Date.class, Types.TIMESTAMP, Column.FLAG_DEFAULT);
public final Column modifiedDate = createColumn(
"modifiedDate", Date.class, Types.TIMESTAMP, Column.FLAG_DEFAULT);
public final Column accountId = createColumn(
"accountId", Long.class, Types.BIGINT, Column.FLAG_DEFAULT);
public final Column fullName = createColumn(
"fullName", String.class, Types.VARCHAR, Column.FLAG_DEFAULT);
public final Column displayName = createColumn(
"displayName", String.class, Types.VARCHAR, Column.FLAG_DEFAULT);
public final Column remoteMessageCount = createColumn(
"remoteMessageCount", Integer.class, Types.INTEGER,
Column.FLAG_DEFAULT);
private FolderTable() {
super("Mail_Folder", FolderTable::new);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy