PersistenceProperties.java 2.6 KB
Newer Older
R
roo00 已提交
1 2 3 4 5
package com.x.cms.core.entity;

import com.x.base.core.entity.AbstractPersistenceProperties;

public final class PersistenceProperties extends AbstractPersistenceProperties {
Z
zhourui 已提交
6

R
roo00 已提交
7 8 9 10
	public static class Element {
		public static class View {
			public static final String table = "CMS_VIEW";
		}
Z
zhourui 已提交
11

R
roo00 已提交
12 13 14
		public static class ViewFieldConfig {
			public static final String table = "CMS_VIEWFIELD_CONFIG";
		}
Z
zhourui 已提交
15

R
roo00 已提交
16 17 18
		public static class ViewCategory {
			public static final String table = "CMS_VIEWCATEGORY";
		}
Z
zhourui 已提交
19

R
roo00 已提交
20 21 22
		public static class Form {
			public static final String table = "CMS_FORM";
		}
Z
zhourui 已提交
23

R
roo00 已提交
24 25 26
		public static class File {
			public static final String table = "CMS_FILE";
		}
Z
zhourui 已提交
27

R
roo00 已提交
28 29 30
		public static class FormField {
			public static final String table = "CMS_FORMFIELD";
		}
Z
zhourui 已提交
31

R
roo00 已提交
32 33 34
		public static class TemplateForm {
			public static final String table = "CMS_TEMPLATEFORM";
		}
Z
zhourui 已提交
35

R
roo00 已提交
36 37 38
		public static class AppDict {
			public static final String table = "CMS_APPNDICT";
		}
Z
zhourui 已提交
39

R
roo00 已提交
40 41 42
		public static class AppDictItem {
			public static final String table = "CMS_APPDICTITEM";
		}
Z
zhourui 已提交
43

R
roo00 已提交
44 45 46 47 48 49 50 51
		public static class Script {
			public static final String table = "CMS_SCRIPT";
		}
	}

	public static class AppInfo {
		public static final String table = "CMS_APPINFO";
	}
R
roo00 已提交
52 53 54 55 56

	public static class AppInfoConfig {
		public static final String table = "CMS_APPINFO_CONFIG";
	}

R
roo00 已提交
57 58 59
	public static class CategoryInfo {
		public static final String table = "CMS_CATEGORYINFO";
	}
Z
zhourui 已提交
60

R
roo00 已提交
61 62 63
	public static class CategoryExt {
		public static final String table = "CMS_CATEGORYEXT";
	}
Z
zhourui 已提交
64

R
roo00 已提交
65 66 67
	public static class Document {
		public static final String table = "CMS_DOCUMENT";
	}
Z
zhourui 已提交
68

R
roo00 已提交
69 70 71
	public static class FileInfo {
		public static final String table = "CMS_FILEINFO";
	}
Z
zhourui 已提交
72

R
roo00 已提交
73 74 75
	public static class Log {
		public static final String table = "CMS_LOG";
	}
Z
zhourui 已提交
76

R
roo00 已提交
77 78 79
	public static class DocumentViewRecord {
		public static final String table = "CMS_DOCUMENT_VIEWRECORD";
	}
Z
zhourui 已提交
80

R
roo00 已提交
81 82 83
	public static class Review {
		public static final String table = "CMS_REVIEW";
	}
Z
zhourui 已提交
84

R
roo00 已提交
85 86
	public static class ReadRemind {
		public static final String table = "CMS_READREMIND";
R
roo00 已提交
87
	}
Z
zhourui 已提交
88

R
fix  
roo00 已提交
89 90 91
	public static class DocumentCommentInfo {
		public static final String table = "CMS_DOCUMENT_COMMENTINFO";
	}
Z
zhourui 已提交
92

R
roo00 已提交
93 94 95
	public static class DocumentCommentContent {
		public static final String table = "CMS_DOCUMENT_COMMENTCONTENT";
	}
Z
zhourui 已提交
96

R
fix  
roo00 已提交
97 98 99
	public static class DocumentCommend {
		public static final String table = "CMS_DOCUMENT_COMMEND";
	}
Z
zhourui 已提交
100

R
roo00 已提交
101 102 103
	public static class DocumentCommentCommend {
		public static final String table = "CMS_DOCUMENT_COMMENTCOMMEND";
	}
Z
zhourui 已提交
104

R
fix  
roo00 已提交
105 106 107
	public static class CmsBatchOperation {
		public static final String table = "CMS_BATCH_OPERATION";
	}
R
roo00 已提交
108 109

}