All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.liferay.commerce.model.CommerceOrderPaymentTable Maven / Gradle / Ivy
/**
* SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
package com.liferay.commerce.model;
import com.liferay.petra.sql.dsl.Column;
import com.liferay.petra.sql.dsl.base.BaseTable;
import java.sql.Clob;
import java.sql.Types;
import java.util.Date;
/**
* The table class for the "CommerceOrderPayment" database table.
*
* @author Alessio Antonio Rendina
* @see CommerceOrderPayment
* @generated
*/
public class CommerceOrderPaymentTable
extends BaseTable {
public static final CommerceOrderPaymentTable INSTANCE =
new CommerceOrderPaymentTable();
public final Column mvccVersion =
createColumn(
"mvccVersion", Long.class, Types.BIGINT, Column.FLAG_NULLITY);
public final Column
commerceOrderPaymentId = createColumn(
"commerceOrderPaymentId", 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 commerceOrderId =
createColumn(
"commerceOrderId", Long.class, Types.BIGINT, Column.FLAG_DEFAULT);
public final Column
commercePaymentMethodKey = createColumn(
"commercePaymentMethodKey", String.class, Types.VARCHAR,
Column.FLAG_DEFAULT);
public final Column content = createColumn(
"content", Clob.class, Types.CLOB, Column.FLAG_DEFAULT);
public final Column status =
createColumn(
"status", Integer.class, Types.INTEGER, Column.FLAG_DEFAULT);
private CommerceOrderPaymentTable() {
super("CommerceOrderPayment", CommerceOrderPaymentTable::new);
}
}