001/*
002 * This file is generated by jOOQ.
003 */
004package com.echothree.model.jooq.server.records.tax;
005
006
007import com.echothree.model.data.core.common.pk.MimeTypePK;
008import com.echothree.model.data.party.common.pk.LanguagePK;
009import com.echothree.model.data.tax.common.pk.TaxClassificationPK;
010import com.echothree.model.data.tax.common.pk.TaxClassificationTranslationPK;
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 TaxClassificationTranslations extends UpdatableRecordImpl<TaxClassificationTranslations> {
021
022    private static final long serialVersionUID = 1L;
023
024    /**
025     * Setter for
026     * <code>taxclassificationtranslations.txclsfntr_taxclassificationtranslationid</code>.
027     */
028    public void TaxClassificationTranslation(TaxClassificationTranslationPK value) {
029        set(0, value);
030    }
031
032    /**
033     * Getter for
034     * <code>taxclassificationtranslations.txclsfntr_taxclassificationtranslationid</code>.
035     */
036    public TaxClassificationTranslationPK TaxClassificationTranslation() {
037        return (TaxClassificationTranslationPK) get(0);
038    }
039
040    /**
041     * Setter for
042     * <code>taxclassificationtranslations.txclsfntr_txclsfn_taxclassificationid</code>.
043     */
044    public void TaxClassification(TaxClassificationPK value) {
045        set(1, value);
046    }
047
048    /**
049     * Getter for
050     * <code>taxclassificationtranslations.txclsfntr_txclsfn_taxclassificationid</code>.
051     */
052    public TaxClassificationPK TaxClassification() {
053        return (TaxClassificationPK) get(1);
054    }
055
056    /**
057     * Setter for
058     * <code>taxclassificationtranslations.txclsfntr_lang_languageid</code>.
059     */
060    public void Language(LanguagePK value) {
061        set(2, value);
062    }
063
064    /**
065     * Getter for
066     * <code>taxclassificationtranslations.txclsfntr_lang_languageid</code>.
067     */
068    public LanguagePK Language() {
069        return (LanguagePK) get(2);
070    }
071
072    /**
073     * Setter for
074     * <code>taxclassificationtranslations.txclsfntr_description</code>.
075     */
076    public void Description(String value) {
077        set(3, value);
078    }
079
080    /**
081     * Getter for
082     * <code>taxclassificationtranslations.txclsfntr_description</code>.
083     */
084    public String Description() {
085        return (String) get(3);
086    }
087
088    /**
089     * Setter for
090     * <code>taxclassificationtranslations.txclsfntr_overviewmimetypeid</code>.
091     */
092    public void OverviewMimeType(MimeTypePK value) {
093        set(4, value);
094    }
095
096    /**
097     * Getter for
098     * <code>taxclassificationtranslations.txclsfntr_overviewmimetypeid</code>.
099     */
100    public MimeTypePK OverviewMimeType() {
101        return (MimeTypePK) get(4);
102    }
103
104    /**
105     * Setter for <code>taxclassificationtranslations.txclsfntr_overview</code>.
106     */
107    public void Overview(String value) {
108        set(5, value);
109    }
110
111    /**
112     * Getter for <code>taxclassificationtranslations.txclsfntr_overview</code>.
113     */
114    public String Overview() {
115        return (String) get(5);
116    }
117
118    /**
119     * Setter for <code>taxclassificationtranslations.txclsfntr_fromtime</code>.
120     */
121    public void FromTime(Long value) {
122        set(6, value);
123    }
124
125    /**
126     * Getter for <code>taxclassificationtranslations.txclsfntr_fromtime</code>.
127     */
128    public Long FromTime() {
129        return (Long) get(6);
130    }
131
132    /**
133     * Setter for <code>taxclassificationtranslations.txclsfntr_thrutime</code>.
134     */
135    public void ThruTime(Long value) {
136        set(7, value);
137    }
138
139    /**
140     * Getter for <code>taxclassificationtranslations.txclsfntr_thrutime</code>.
141     */
142    public Long ThruTime() {
143        return (Long) get(7);
144    }
145
146    // -------------------------------------------------------------------------
147    // Primary key information
148    // -------------------------------------------------------------------------
149
150    @Override
151    public Record1<TaxClassificationTranslationPK> key() {
152        return (Record1) super.key();
153    }
154
155    // -------------------------------------------------------------------------
156    // Constructors
157    // -------------------------------------------------------------------------
158
159    /**
160     * Create a detached TaxClassificationTranslations
161     */
162    public TaxClassificationTranslations() {
163        super(com.echothree.model.jooq.server.tables.tax.TaxClassificationTranslations.TaxClassificationTranslations);
164    }
165
166    /**
167     * Create a detached, initialised TaxClassificationTranslations
168     */
169    public TaxClassificationTranslations(TaxClassificationTranslationPK TaxClassificationTranslation, TaxClassificationPK TaxClassification, LanguagePK Language, String Description, MimeTypePK OverviewMimeType, String Overview, Long FromTime, Long ThruTime) {
170        super(com.echothree.model.jooq.server.tables.tax.TaxClassificationTranslations.TaxClassificationTranslations);
171
172        TaxClassificationTranslation(TaxClassificationTranslation);
173        TaxClassification(TaxClassification);
174        Language(Language);
175        Description(Description);
176        OverviewMimeType(OverviewMimeType);
177        Overview(Overview);
178        FromTime(FromTime);
179        ThruTime(ThruTime);
180        resetTouchedOnNotNull();
181    }
182}