/** * This class is generated by jOOQ */ package io.cattle.platform.core.model; /** * This class is generated by jOOQ. */ @javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" }, comments = "This class is generated by jOOQ") @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) @javax.persistence.Entity @javax.persistence.Table(name = "dynamic_schema_role", schema = "cattle") public interface DynamicSchemaRole extends java.io.Serializable { /** * Setter for <code>cattle.dynamic_schema_role.id</code>. */ public void setId(java.lang.Long value); /** * Getter for <code>cattle.dynamic_schema_role.id</code>. */ @javax.persistence.Id @javax.persistence.Column(name = "id", unique = true, nullable = false, precision = 19) public java.lang.Long getId(); /** * Setter for <code>cattle.dynamic_schema_role.dynamic_schema_id</code>. */ public void setDynamicSchemaId(java.lang.Long value); /** * Getter for <code>cattle.dynamic_schema_role.dynamic_schema_id</code>. */ @javax.persistence.Column(name = "dynamic_schema_id", precision = 19) public java.lang.Long getDynamicSchemaId(); /** * Setter for <code>cattle.dynamic_schema_role.role</code>. */ public void setRole(java.lang.String value); /** * Getter for <code>cattle.dynamic_schema_role.role</code>. */ @javax.persistence.Column(name = "role", nullable = false, length = 255) public java.lang.String getRole(); // ------------------------------------------------------------------------- // FROM and INTO // ------------------------------------------------------------------------- /** * Load data from another generated Record/POJO implementing the common interface DynamicSchemaRole */ public void from(io.cattle.platform.core.model.DynamicSchemaRole from); /** * Copy data into another generated Record/POJO implementing the common interface DynamicSchemaRole */ public <E extends io.cattle.platform.core.model.DynamicSchemaRole> E into(E into); }