Package net.sf.minuteproject.model.db

Examples of net.sf.minuteproject.model.db.Column


  }   

  protected Map<Integer, Column> getColumns() {
     Map<Integer, Column> columnIndex = new HashMap<Integer, Column>();
     int i = 0;
     columnIndex.put(i++, new Column("ID", FieldType.BIGINT, true, 0)); //java.lang.Long
     columnIndex.put(i++, new Column("NAME", FieldType.VARCHAR, true, 255)); //java.lang.String
     columnIndex.put(i++, new Column("START_DATE", FieldType.DATE, false, 0)); //java.lang.Date
     columnIndex.put(i++, new Column("END_DATE", FieldType.DATE, false, 0)); //java.lang.Date
     columnIndex.put(i++, new Column("ADDRESS_ID", FieldType.BIGINT, true, 0)); //java.lang.Long
     return columnIndex;
  }    
View Full Code Here


  }   

  protected Map<Integer, Column> getColumns() {
     Map<Integer, Column> columnIndex = new HashMap<Integer, Column>();
     int i = 0;
     columnIndex.put(i++, new Column("CONFERENCE_MEMBER_ID", FieldType.BIGINT, true, 0)); //java.lang.Long
     columnIndex.put(i++, new Column("ROLE_ID", FieldType.INTEGER, true, 0)); //java.lang.Integer
     return columnIndex;
  }    
View Full Code Here

  }   

  protected Map<Integer, Column> getColumns() {
     Map<Integer, Column> columnIndex = new HashMap<Integer, Column>();
     int i = 0;
     columnIndex.put(i++, new Column("SPEAKER_ID", FieldType.BIGINT, true, 0)); //java.lang.Long
     columnIndex.put(i++, new Column("PRESENTATION_ID", FieldType.BIGINT, true, 0)); //java.lang.Long
     return columnIndex;
  }    
View Full Code Here

  }   

  protected Map<Integer, Column> getColumns() {
     Map<Integer, Column> columnIndex = new HashMap<Integer, Column>();
     int i = 0;
     columnIndex.put(i++, new Column("ID", FieldType.BIGINT, true, 0)); //java.lang.Long
     columnIndex.put(i++, new Column("CONFERENCE_MEMBER_ID", FieldType.BIGINT, true, 0)); //java.lang.Long
     columnIndex.put(i++, new Column("PRESENTATION_ID", FieldType.BIGINT, true, 0)); //java.lang.Long
     columnIndex.put(i++, new Column("STAR", FieldType.INTEGER, true, 0)); //java.lang.Integer
     columnIndex.put(i++, new Column("COMMENT", FieldType.VARCHAR, false, 500)); //java.lang.String
     columnIndex.put(i++, new Column("EVALUATION_DATE", FieldType.TIMESTAMP, false, 0)); //java.lang.Timestamp
     return columnIndex;
  }    
View Full Code Here

  }   

  protected Map<Integer, Column> getColumns() {
     Map<Integer, Column> columnIndex = new HashMap<Integer, Column>();
     int i = 0;
     columnIndex.put(i++, new Column("ID", FieldType.INTEGER, true, 0)); //java.lang.Integer
     columnIndex.put(i++, new Column("NAME", FieldType.VARCHAR, true, 45)); //java.lang.String
     return columnIndex;
  }    
View Full Code Here

TOP

Related Classes of net.sf.minuteproject.model.db.Column

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.