001/* 002 * This file is generated by jOOQ. 003 */ 004package com.echothree.model.jooq.server.records.item; 005 006 007import com.echothree.model.data.item.common.pk.ItemClobDescriptionPK; 008import com.echothree.model.data.item.common.pk.ItemDescriptionPK; 009 010import org.jooq.Record1; 011import org.jooq.impl.UpdatableRecordImpl; 012 013 014/** 015 * This class is generated by jOOQ. 016 */ 017@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) 018public class ItemClobDescriptions extends UpdatableRecordImpl<ItemClobDescriptions> { 019 020 private static final long serialVersionUID = 1L; 021 022 /** 023 * Setter for 024 * <code>itemclobdescriptions.icdesc_itemclobdescriptionid</code>. 025 */ 026 public void ItemClobDescription(ItemClobDescriptionPK value) { 027 set(0, value); 028 } 029 030 /** 031 * Getter for 032 * <code>itemclobdescriptions.icdesc_itemclobdescriptionid</code>. 033 */ 034 public ItemClobDescriptionPK ItemClobDescription() { 035 return (ItemClobDescriptionPK) get(0); 036 } 037 038 /** 039 * Setter for 040 * <code>itemclobdescriptions.icdesc_idesc_itemdescriptionid</code>. 041 */ 042 public void ItemDescription(ItemDescriptionPK value) { 043 set(1, value); 044 } 045 046 /** 047 * Getter for 048 * <code>itemclobdescriptions.icdesc_idesc_itemdescriptionid</code>. 049 */ 050 public ItemDescriptionPK ItemDescription() { 051 return (ItemDescriptionPK) get(1); 052 } 053 054 /** 055 * Setter for <code>itemclobdescriptions.icdesc_clobdescription</code>. 056 */ 057 public void ClobDescription(String value) { 058 set(2, value); 059 } 060 061 /** 062 * Getter for <code>itemclobdescriptions.icdesc_clobdescription</code>. 063 */ 064 public String ClobDescription() { 065 return (String) get(2); 066 } 067 068 /** 069 * Setter for <code>itemclobdescriptions.icdesc_fromtime</code>. 070 */ 071 public void FromTime(Long value) { 072 set(3, value); 073 } 074 075 /** 076 * Getter for <code>itemclobdescriptions.icdesc_fromtime</code>. 077 */ 078 public Long FromTime() { 079 return (Long) get(3); 080 } 081 082 /** 083 * Setter for <code>itemclobdescriptions.icdesc_thrutime</code>. 084 */ 085 public void ThruTime(Long value) { 086 set(4, value); 087 } 088 089 /** 090 * Getter for <code>itemclobdescriptions.icdesc_thrutime</code>. 091 */ 092 public Long ThruTime() { 093 return (Long) get(4); 094 } 095 096 // ------------------------------------------------------------------------- 097 // Primary key information 098 // ------------------------------------------------------------------------- 099 100 @Override 101 public Record1<ItemClobDescriptionPK> key() { 102 return (Record1) super.key(); 103 } 104 105 // ------------------------------------------------------------------------- 106 // Constructors 107 // ------------------------------------------------------------------------- 108 109 /** 110 * Create a detached ItemClobDescriptions 111 */ 112 public ItemClobDescriptions() { 113 super(com.echothree.model.jooq.server.tables.item.ItemClobDescriptions.ItemClobDescriptions); 114 } 115 116 /** 117 * Create a detached, initialised ItemClobDescriptions 118 */ 119 public ItemClobDescriptions(ItemClobDescriptionPK ItemClobDescription, ItemDescriptionPK ItemDescription, String ClobDescription, Long FromTime, Long ThruTime) { 120 super(com.echothree.model.jooq.server.tables.item.ItemClobDescriptions.ItemClobDescriptions); 121 122 ItemClobDescription(ItemClobDescription); 123 ItemDescription(ItemDescription); 124 ClobDescription(ClobDescription); 125 FromTime(FromTime); 126 ThruTime(ThruTime); 127 resetTouchedOnNotNull(); 128 } 129}