All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ning.billing.util.customfield.dao.CustomFieldSqlDao.sql.stg Maven / Gradle / Ivy

group CustomFieldSqlDao: EntitySqlDao;

tableName() ::= "custom_fields"

tableFields(prefix) ::= <<
  object_id
, object_type
, field_name
, field_value
, created_by
, created_date
, updated_by
, updated_date
>>

tableValues() ::= <<
  :objectId
, :objectType
, :fieldName
, :fieldValue
, :createdBy
, :createdDate
, :updatedBy
, :updatedDate
>>

historyTableName() ::= "custom_field_history"


getCustomFieldsForObject() ::= <<
select

from 
where
object_id = :objectId
and object_type = :objectType

;
>>





© 2015 - 2025 Weber Informatics LLC | Privacy Policy