001/* 002 * This file is generated by jOOQ. 003 */ 004package com.echothree.model.jooq.server.records.payment; 005 006 007import com.echothree.model.data.invoice.common.pk.InvoiceLinePK; 008import com.echothree.model.data.payment.common.pk.PaymentApplicationDetailPK; 009import com.echothree.model.data.payment.common.pk.PaymentApplicationPK; 010import com.echothree.model.data.payment.common.pk.PaymentPK; 011 012import org.jooq.Record1; 013import org.jooq.impl.UpdatableRecordImpl; 014 015 016/** 017 * This class is generated by jOOQ. 018 */ 019@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) 020public class PaymentApplicationDetails extends UpdatableRecordImpl<PaymentApplicationDetails> { 021 022 private static final long serialVersionUID = 1L; 023 024 /** 025 * Setter for 026 * <code>paymentapplicationdetails.pymtappldt_paymentapplicationdetailid</code>. 027 */ 028 public void PaymentApplicationDetail(PaymentApplicationDetailPK value) { 029 set(0, value); 030 } 031 032 /** 033 * Getter for 034 * <code>paymentapplicationdetails.pymtappldt_paymentapplicationdetailid</code>. 035 */ 036 public PaymentApplicationDetailPK PaymentApplicationDetail() { 037 return (PaymentApplicationDetailPK) get(0); 038 } 039 040 /** 041 * Setter for 042 * <code>paymentapplicationdetails.pymtappldt_pymtappl_paymentapplicationid</code>. 043 */ 044 public void PaymentApplication(PaymentApplicationPK value) { 045 set(1, value); 046 } 047 048 /** 049 * Getter for 050 * <code>paymentapplicationdetails.pymtappldt_pymtappl_paymentapplicationid</code>. 051 */ 052 public PaymentApplicationPK PaymentApplication() { 053 return (PaymentApplicationPK) get(1); 054 } 055 056 /** 057 * Setter for 058 * <code>paymentapplicationdetails.pymtappldt_pymt_paymentid</code>. 059 */ 060 public void Payment(PaymentPK value) { 061 set(2, value); 062 } 063 064 /** 065 * Getter for 066 * <code>paymentapplicationdetails.pymtappldt_pymt_paymentid</code>. 067 */ 068 public PaymentPK Payment() { 069 return (PaymentPK) get(2); 070 } 071 072 /** 073 * Setter for 074 * <code>paymentapplicationdetails.pymtappldt_invcl_invoicelineid</code>. 075 */ 076 public void InvoiceLine(InvoiceLinePK value) { 077 set(3, value); 078 } 079 080 /** 081 * Getter for 082 * <code>paymentapplicationdetails.pymtappldt_invcl_invoicelineid</code>. 083 */ 084 public InvoiceLinePK InvoiceLine() { 085 return (InvoiceLinePK) get(3); 086 } 087 088 /** 089 * Setter for <code>paymentapplicationdetails.pymtappldt_amount</code>. 090 */ 091 public void Amount(Long value) { 092 set(4, value); 093 } 094 095 /** 096 * Getter for <code>paymentapplicationdetails.pymtappldt_amount</code>. 097 */ 098 public Long Amount() { 099 return (Long) get(4); 100 } 101 102 /** 103 * Setter for <code>paymentapplicationdetails.pymtappldt_fromtime</code>. 104 */ 105 public void FromTime(Long value) { 106 set(5, value); 107 } 108 109 /** 110 * Getter for <code>paymentapplicationdetails.pymtappldt_fromtime</code>. 111 */ 112 public Long FromTime() { 113 return (Long) get(5); 114 } 115 116 /** 117 * Setter for <code>paymentapplicationdetails.pymtappldt_thrutime</code>. 118 */ 119 public void ThruTime(Long value) { 120 set(6, value); 121 } 122 123 /** 124 * Getter for <code>paymentapplicationdetails.pymtappldt_thrutime</code>. 125 */ 126 public Long ThruTime() { 127 return (Long) get(6); 128 } 129 130 // ------------------------------------------------------------------------- 131 // Primary key information 132 // ------------------------------------------------------------------------- 133 134 @Override 135 public Record1<PaymentApplicationDetailPK> key() { 136 return (Record1) super.key(); 137 } 138 139 // ------------------------------------------------------------------------- 140 // Constructors 141 // ------------------------------------------------------------------------- 142 143 /** 144 * Create a detached PaymentApplicationDetails 145 */ 146 public PaymentApplicationDetails() { 147 super(com.echothree.model.jooq.server.tables.payment.PaymentApplicationDetails.PaymentApplicationDetails); 148 } 149 150 /** 151 * Create a detached, initialised PaymentApplicationDetails 152 */ 153 public PaymentApplicationDetails(PaymentApplicationDetailPK PaymentApplicationDetail, PaymentApplicationPK PaymentApplication, PaymentPK Payment, InvoiceLinePK InvoiceLine, Long Amount, Long FromTime, Long ThruTime) { 154 super(com.echothree.model.jooq.server.tables.payment.PaymentApplicationDetails.PaymentApplicationDetails); 155 156 PaymentApplicationDetail(PaymentApplicationDetail); 157 PaymentApplication(PaymentApplication); 158 Payment(Payment); 159 InvoiceLine(InvoiceLine); 160 Amount(Amount); 161 FromTime(FromTime); 162 ThruTime(ThruTime); 163 resetTouchedOnNotNull(); 164 } 165}