com.liferay.contacts.model.EntryTable Maven / Gradle / Ivy
/**
* 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.contacts.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 "Contacts_Entry" database table.
*
* @author Brian Wing Shun Chan
* @see Entry
* @generated
*/
public class EntryTable extends BaseTable {
public static final EntryTable INSTANCE = new EntryTable();
public final Column entryId = createColumn(
"entryId", Long.class, Types.BIGINT, Column.FLAG_PRIMARY);
public final Column groupId = createColumn(
"groupId", Long.class, Types.BIGINT, Column.FLAG_DEFAULT);
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 fullName = createColumn(
"fullName", String.class, Types.VARCHAR, Column.FLAG_DEFAULT);
public final Column emailAddress = createColumn(
"emailAddress", String.class, Types.VARCHAR, Column.FLAG_DEFAULT);
public final Column comments = createColumn(
"comments", String.class, Types.VARCHAR, Column.FLAG_DEFAULT);
private EntryTable() {
super("Contacts_Entry", EntryTable::new);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy