Download this file
28 lines (21 with data), 521 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26 | /**
* <strong> 表元数据 </stong>
* <p>
* 1) 最大支持索引个数为4
* </p>
*
* @author: 汉娱网络.技术部.yangxf
* @date: 2008-02-28
* @version: 0.1
**/
package com.handjoys.fastdb;
import java.util.Vector;
public class EntityMeta {
public static final int MAX_INDEX_MATA=4;
// 实体定义
public Vector<ColumnMetaData> entity_meta;
// 索引定义: 索引字段组成(支持多个索引)
public Vector<ColumnMetaData> index_meta;
public EntityMeta() {
}
}
|
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.