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

org.killbill.billing.tenant.dao.TenantBroadcastSqlDao.sql.stg Maven / Gradle / Ivy

import "org/killbill/billing/util/entity/dao/EntitySqlDao.sql.stg"

tableName() ::= "tenant_broadcasts"

tableFields(prefix) ::= <<
  target_record_id
, target_table_name
, type
, user_token
, created_date
, created_by
, updated_date
, updated_by
>>

tableValues() ::= <<
  :targetRecordId
, :targetTableName
, :type
, :userToken
, :createdDate
, :createdBy
, :updatedDate
, :updatedBy
>>

/* No account_record_id field */
accountRecordIdFieldWithComma(prefix) ::= ""
accountRecordIdValueWithComma() ::= ""


getLatestEntries() ::= <<
select
  
from  t
where record_id > :recordId

;
>>


getLatestEntry() ::= <<
select
  
from  t
where record_id = (select max(record_id) from )
;
>>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy