PersistenceProperties.java 5.4 KB
Newer Older
R
roo00 已提交
1 2 3 4 5 6 7 8
package com.x.processplatform.core.entity;

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

public final class PersistenceProperties extends AbstractPersistenceProperties {

	public static class Content {

Z
zhourui 已提交
9 10 11
		private Content() {
		}

NoSubject's avatar
NoSubject 已提交
12
		public static class Draft {
Z
zhourui 已提交
13 14 15 16

			private Draft() {
			}

NoSubject's avatar
NoSubject 已提交
17
			public static final String table = "PP_C_DRAFT";
R
roo00 已提交
18 19
		}

O
o2sword 已提交
20 21 22 23
		public static class DocSign {
			public static final String table = "PP_C_DOC_SIGN";
		}

O
签批3  
o2sword 已提交
24 25 26 27
		public static class DocSignScrawl {
			public static final String table = "PP_C_DOC_SIGN_SCRAWL";
		}

NoSubject's avatar
NoSubject 已提交
28 29
		public static class TaskCompleted {
			public static final String table = "PP_C_TASKCOMPLETED";
R
roo00 已提交
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
		}

		public static class Task {
			public static final String table = "PP_C_TASK";
		}

		public static class Read {
			public static final String table = "PP_C_READ";
		}

		public static class Review {
			public static final String table = "PP_C_REVIEW";
		}

		public static class ReadCompleted {
			public static final String table = "PP_C_READCOMPLETED";
		}

		public static class WorkCompleted {
			public static final String table = "PP_C_WORKCOMPLETED";
		}

		public static class WorkLog {
			public static final String table = "PP_C_WORKLOG";
		}

NoSubject's avatar
NoSubject 已提交
56 57 58 59
		public static class Record {
			public static final String table = "PP_C_Record";
		}

R
roo00 已提交
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
		public static class Work {
			public static final String table = "PP_C_WORK";
		}

		public static class Attachment {
			public static final String table = "PP_C_ATTACHMENT";
		}

		public static class DataItem {
			public static final String table = "PP_C_DATAITEM";
		}

		public static class DataLobItem {
			public static final String table = "PP_C_DATALOBITEM";
		}

		public static class SerialNumber {
R
roo00 已提交
77 78 79 80 81
			public static final String table = "PP_C_SERIALNUMBER";
		}

		public static class KeyLock {
			public static final String table = "PP_C_KEYLOCK";
R
roo00 已提交
82
		}
R
roo00 已提交
83 84 85 86

		public static class DocumentVersion {
			public static final String table = "PP_C_DOCUMENTVERSION";
		}
Z
zhourui 已提交
87 88 89 90

		public static class Snap {
			public static final String table = "PP_C_SNAP";
		}
R
roo00 已提交
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
	}

	public static class Element {

		public static class Application {
			public static final String table = "PP_E_APPLICATION";
		}

		public static class Agent {
			public static final String table = "PP_E_AGENT";
		}

		public static class Begin {
			public static final String table = "PP_E_BEGIN";
		}

		public static class Cancel {
			public static final String table = "PP_E_CANCEL";
		}

		public static class Choice {
			public static final String table = "PP_E_CHOICE";
		}

		public static class Delay {
			public static final String table = "PP_E_DELAY";
		}

		public static class Embed {
			public static final String table = "PP_E_EMBED";
		}

		public static class End {
			public static final String table = "PP_E_END";
		}

		public static class Parallel {
			public static final String table = "PP_E_PARALLEL";
		}

		public static class Invoke {
			public static final String table = "PP_E_INVOKE";
		}

O
o2sword 已提交
135 136 137 138
		public static class Publish {
			public static final String table = "PP_E_PUBLISH";
		}

R
roo00 已提交
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
		public static class Manual {
			public static final String table = "PP_E_MANUAL";
		}

		public static class Merge {
			public static final String table = "PP_E_MERGE";
		}

		public static class Message {
			public static final String table = "PP_E_MESSAGE";
		}

		public static class Route {
			public static final String table = "PP_E_ROUTE";
		}

		public static class Script {
			public static final String table = "PP_E_SCRIPT";
		}

R
roo00 已提交
159 160 161 162
		public static class ScriptVersion {
			public static final String table = "PP_E_SCRIPTVERSION";
		}

R
roo00 已提交
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
		public static class Service {
			public static final String table = "PP_E_SERVICE";
		}

		public static class Split {
			public static final String table = "PP_E_SPLIT";
		}

		public static class Form {
			public static final String table = "PP_E_FORM";
		}

		public static class FormField {
			public static final String table = "PP_E_FORMFIELD";
		}

R
roo00 已提交
179 180 181 182
		public static class FormVersion {
			public static final String table = "PP_E_FORMVERSION";
		}

R
roo00 已提交
183 184 185 186 187 188 189 190 191 192 193 194
		public static class File {
			public static final String table = "PP_E_FILE";
		}

		public static class TemplateForm {
			public static final String table = "PP_E_TEMPLATEFORM";
		}

		public static class Process {
			public static final String table = "PP_E_PROCESS";
		}

R
roo00 已提交
195 196 197 198
		public static class ProcessVersion {
			public static final String table = "PP_E_PROCESSVERSION";
		}

R
roo00 已提交
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
		public static class ApplicationDict {
			public static final String table = "PP_E_APPLICATIONDICT";
		}

		public static class ApplicationDictItem {
			public static final String table = "PP_E_APPLICATIONDICTITEM";
		}

		public static class ApplicationDictLobItem {
			public static final String table = "PP_E_APPLICATIONDICTLOBITEM";
		}

		public static class QueryStatTimed {
			public static final String table = "PP_E_QUERYSTATTIMED";
		}
R
roo00 已提交
214

R
roo00 已提交
215 216 217
		public static class Mapping {
			public static final String table = "PP_E_MAPPING";
		}
R
roo00 已提交
218 219 220
	}

	public static class Log {
Z
zhourui 已提交
221 222 223 224

		private Log() {
		}

Z
zhourui 已提交
225
		public static class SignalStackLog {
Z
zhourui 已提交
226 227 228 229

			private SignalStackLog() {
			}

Z
zhourui 已提交
230
			public static final String table = "PP_L_SIGNALSTACKLOG";
Z
zhourui 已提交
231

R
roo00 已提交
232 233 234
		}
	}

R
Ray 已提交
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
	public static class Message {

		private Message() {
		}

		public static class Event {

			private Event() {
			}

			public static final String table = "PP_M_EVENT";

		}
	}

R
roo00 已提交
250 251 252 253 254
	public static class Temporary {
		public static class ServiceValue {
			public static final String table = "PP_T_SERVICEVALUE";
		}
	}
O
o2sword 已提交
255
}