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

net.gdface.facelog.db.FeatureMetaData Maven / Gradle / Ivy

There is a newer version: 5.3.0
Show newest version
// ______________________________________________________
// Generated by sql2java - https://github.com/10km/sql2java 
// JDBC driver used at code generation time: com.mysql.jdbc.Driver
// template: metadata.java.vm
// ______________________________________________________
package net.gdface.facelog.db;

import java.util.List;
import java.util.Arrays;
import gu.sql2java.RowMetaData;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableList;

/**
 * Class to supply table meta data for the fl_feature table.
* @author guyadong */ public class FeatureMetaData extends RowMetaData implements Constant { private static final ImmutableMap JUNCTION_TABLE_PK_MAP = ImmutableMap.of(); private static final ImmutableList FOREIGN_KEYS = ImmutableList.builder() .add("fl_feature_ibfk_1 (person_id) REFERENCES fl_person(id) RESTRICT CASCADE") .build(); private static final ImmutableList INDEXS = ImmutableList.builder() .add("feature_version (version) ") .add("person_id (person_id) ") .build(); private static final List GETTERS = Arrays.asList("getMd5","getVersion","getPersonId","getFeature","getUpdateTime"); private static final List SETTERS = Arrays.asList("setMd5","setVersion","setPersonId","setFeature","setUpdateTime"); private static final String AUTO_INCREMENT_COLUMN = ""; private static final Class LOCK_COLUMN_TYPE = null; private static final String LOCK_COLUMN_NAME = null; public FeatureMetaData(){ super( "fl_feature", "TABLE", FeatureBean.class, "Feature", IFeatureManager.class, FL_FEATURE_FIELDS_LIST, FL_FEATURE_JAVA_FIELDS_LIST, GETTERS, SETTERS, FL_FEATURE_FIELD_TYPES, FL_FEATURE_FIELD_SIZES, FL_FEATURE_FIELD_SQL_TYPES, FL_FEATURE_PK_FIELDS_LIST, JUNCTION_TABLE_PK_MAP, LOCK_COLUMN_TYPE, LOCK_COLUMN_NAME, FOREIGN_KEYS, INDEXS, AUTO_INCREMENT_COLUMN ); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy