diff --git a/o2server/console_risc.sh b/o2server/console_mips.sh similarity index 100% rename from o2server/console_risc.sh rename to o2server/console_mips.sh diff --git a/o2server/console_raspberrypi.sh b/o2server/console_raspi.sh similarity index 100% rename from o2server/console_raspberrypi.sh rename to o2server/console_raspi.sh diff --git a/o2server/start_risc.sh b/o2server/start_mips.sh similarity index 100% rename from o2server/start_risc.sh rename to o2server/start_mips.sh diff --git a/o2server/start_risc_debug.sh b/o2server/start_mips_debug.sh similarity index 100% rename from o2server/start_risc_debug.sh rename to o2server/start_mips_debug.sh diff --git a/o2server/start_raspberrypi.sh b/o2server/start_raspi.sh similarity index 100% rename from o2server/start_raspberrypi.sh rename to o2server/start_raspi.sh diff --git a/o2server/start_raspberrypi_debug.sh b/o2server/start_raspi_debug.sh similarity index 100% rename from o2server/start_raspberrypi_debug.sh rename to o2server/start_raspi_debug.sh diff --git a/o2server/stop_risc.sh b/o2server/stop_mips.sh similarity index 100% rename from o2server/stop_risc.sh rename to o2server/stop_mips.sh diff --git a/o2server/stop_raspberrypi.sh b/o2server/stop_raspi.sh similarity index 100% rename from o2server/stop_raspberrypi.sh rename to o2server/stop_raspi.sh diff --git a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Draft.java b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Draft.java index 4b03b3a55b0b3488550528f1b05ed35c9fb7de46..38cbb170defd9fe0e518743fe5320f40f44fb5d3 100644 --- a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Draft.java +++ b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Draft.java @@ -116,7 +116,6 @@ public class Draft extends SliceJpaObject { public static final String applicationAlias_FIELDNAME = "applicationAlias"; @FieldDescribe("应用别名.") @Column(length = length_255B, name = ColumnNamePrefix + applicationAlias_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + applicationAlias_FIELDNAME) @CheckPersist(allowEmpty = true) private String applicationAlias; @@ -137,7 +136,6 @@ public class Draft extends SliceJpaObject { public static final String processAlias_FIELDNAME = "processAlias"; @FieldDescribe("流程别名.") @Column(length = length_255B, name = ColumnNamePrefix + processAlias_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + processAlias_FIELDNAME) @CheckPersist(allowEmpty = true) private String processAlias; diff --git a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Read.java b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Read.java index e114b63eb061456c72ca9081342f8d436dd32a40..11eb48c78b2a0ac5aa848f2c798fbaf988e91fbe 100644 --- a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Read.java +++ b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Read.java @@ -245,7 +245,6 @@ public class Read extends SliceJpaObject implements ProjectionInterface { public static final String applicationAlias_FIELDNAME = "applicationAlias"; @FieldDescribe("应用别名.") @Column(length = length_255B, name = ColumnNamePrefix + applicationAlias_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + applicationAlias_FIELDNAME) @CheckPersist(allowEmpty = true) private String applicationAlias; @@ -266,7 +265,6 @@ public class Read extends SliceJpaObject implements ProjectionInterface { public static final String processAlias_FIELDNAME = "processAlias"; @FieldDescribe("流程别名.") @Column(length = length_255B, name = ColumnNamePrefix + processAlias_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + processAlias_FIELDNAME) @CheckPersist(allowEmpty = true) private String processAlias; diff --git a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/ReadCompleted.java b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/ReadCompleted.java index a553e48b325941ea63a130e99a44cc500c1e53c7..f395c0658c523d6a35ce03b9058237a7eeb523d8 100644 --- a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/ReadCompleted.java +++ b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/ReadCompleted.java @@ -233,7 +233,6 @@ public class ReadCompleted extends SliceJpaObject implements ProjectionInterface public static final String applicationAlias_FIELDNAME = "applicationAlias"; @FieldDescribe("应用别名.") @Column(length = length_255B, name = ColumnNamePrefix + applicationAlias_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + applicationAlias_FIELDNAME) @CheckPersist(allowEmpty = true) private String applicationAlias; @@ -254,7 +253,6 @@ public class ReadCompleted extends SliceJpaObject implements ProjectionInterface public static final String processAlias_FIELDNAME = "processAlias"; @FieldDescribe("流程别名.") @Column(length = length_255B, name = ColumnNamePrefix + processAlias_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + processAlias_FIELDNAME) @CheckPersist(allowEmpty = true) private String processAlias; diff --git a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Review.java b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Review.java index 8c951c18a6b75b4135fa8cd3917bae84741e51ce..d70bebd966e5204f52374e42770e017a839ed852 100644 --- a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Review.java +++ b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Review.java @@ -249,7 +249,6 @@ public class Review extends SliceJpaObject implements ProjectionInterface { @FieldDescribe("应用别名.") @Column(length = AbstractPersistenceProperties.processPlatform_name_length, name = ColumnNamePrefix + applicationAlias_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + applicationAlias_FIELDNAME) @CheckPersist(allowEmpty = true) private String applicationAlias; @@ -272,7 +271,6 @@ public class Review extends SliceJpaObject implements ProjectionInterface { @FieldDescribe("流程别名.") @Column(length = AbstractPersistenceProperties.processPlatform_name_length, name = ColumnNamePrefix + processAlias_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + processAlias_FIELDNAME) @CheckPersist(allowEmpty = true) private String processAlias; diff --git a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Snap.java b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Snap.java index 1e72666515b3bc239c04aec6c530236687829ec7..8716b1dd8c4b23d0b0250efa0b6b396241a0496a 100644 --- a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Snap.java +++ b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Snap.java @@ -162,7 +162,6 @@ public class Snap extends SliceJpaObject { public static final String applicationAlias_FIELDNAME = "applicationAlias"; @FieldDescribe("应用别名.") @Column(length = length_255B, name = ColumnNamePrefix + applicationAlias_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + applicationAlias_FIELDNAME) @CheckPersist(allowEmpty = true) private String applicationAlias; @@ -183,7 +182,6 @@ public class Snap extends SliceJpaObject { public static final String processAlias_FIELDNAME = "processAlias"; @FieldDescribe("流程别名.") @Column(length = length_255B, name = ColumnNamePrefix + processAlias_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + processAlias_FIELDNAME) @CheckPersist(allowEmpty = true) private String processAlias; diff --git a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Task.java b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Task.java index 1327892ee6259ef204d87b354ed5a601eed35ea5..218550b56d1726a73f4701a6d88e32491441c9af 100644 --- a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Task.java +++ b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Task.java @@ -236,7 +236,6 @@ public class Task extends SliceJpaObject implements ProjectionInterface { public static final String applicationAlias_FIELDNAME = "applicationAlias"; @FieldDescribe("应用别名.") @Column(length = length_255B, name = ColumnNamePrefix + applicationAlias_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + applicationAlias_FIELDNAME) @CheckPersist(allowEmpty = true) private String applicationAlias; @@ -257,7 +256,6 @@ public class Task extends SliceJpaObject implements ProjectionInterface { public static final String processAlias_FIELDNAME = "processAlias"; @FieldDescribe("流程别名.") @Column(length = length_255B, name = ColumnNamePrefix + processAlias_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + processAlias_FIELDNAME) @CheckPersist(allowEmpty = true) private String processAlias; diff --git a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/TaskCompleted.java b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/TaskCompleted.java index 0a759c14d2421cb80790c30a960ad805b3a71f81..24593c9d7e01051cf185a204e6f65e9a54b387db 100644 --- a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/TaskCompleted.java +++ b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/TaskCompleted.java @@ -433,7 +433,6 @@ public class TaskCompleted extends SliceJpaObject implements ProjectionInterface public static final String applicationAlias_FIELDNAME = "applicationAlias"; @FieldDescribe("应用别名.") @Column(length = length_255B, name = ColumnNamePrefix + applicationAlias_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + applicationAlias_FIELDNAME) @CheckPersist(allowEmpty = true) private String applicationAlias; @@ -447,7 +446,6 @@ public class TaskCompleted extends SliceJpaObject implements ProjectionInterface public static final String processAlias_FIELDNAME = "processAlias"; @FieldDescribe("流程别名.") @Column(length = length_255B, name = ColumnNamePrefix + processAlias_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + processAlias_FIELDNAME) @CheckPersist(allowEmpty = true) private String processAlias; @@ -524,7 +522,6 @@ public class TaskCompleted extends SliceJpaObject implements ProjectionInterface public static final String activityDescription_FIELDNAME = "activityDescription"; @FieldDescribe("活动说明.") @Column(length = length_255B, name = ColumnNamePrefix + activityDescription_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + activityDescription_FIELDNAME) @CheckPersist(allowEmpty = true) private String activityDescription; @@ -615,7 +612,6 @@ public class TaskCompleted extends SliceJpaObject implements ProjectionInterface public static final String processingType_FIELDNAME = "processingType"; @FieldDescribe("流程流转类型") @Column(length = JpaObject.length_16B, name = ColumnNamePrefix + processingType_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + processingType_FIELDNAME) @CheckPersist(allowEmpty = false) private String processingType; @@ -661,14 +657,12 @@ public class TaskCompleted extends SliceJpaObject implements ProjectionInterface public static final String currentActivityName_FIELDNAME = "currentActivityName"; @FieldDescribe("当前活动名称.") @Column(length = length_255B, name = ColumnNamePrefix + currentActivityName_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + currentActivityName_FIELDNAME) @CheckPersist(allowEmpty = true) private String currentActivityName; public static final String joinInquire_FIELDNAME = "joinInquire"; @FieldDescribe("已办是否参与路由.") @Column(name = ColumnNamePrefix + joinInquire_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + joinInquire_FIELDNAME) @CheckPersist(allowEmpty = true) private Boolean joinInquire; diff --git a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Work.java b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Work.java index 46574835bbc7eb956efd254b38b2866ccb1bd07b..0a912a77cd673ba23fed85f905bdb2bdf85478cf 100644 --- a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Work.java +++ b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/Work.java @@ -240,7 +240,6 @@ public class Work extends SliceJpaObject implements ProjectionInterface { public static final String applicationAlias_FIELDNAME = "applicationAlias"; @FieldDescribe("应用别名.") @Column(length = length_255B, name = ColumnNamePrefix + applicationAlias_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + applicationAlias_FIELDNAME) @CheckPersist(allowEmpty = true) private String applicationAlias; @@ -261,7 +260,6 @@ public class Work extends SliceJpaObject implements ProjectionInterface { public static final String processAlias_FIELDNAME = "processAlias"; @FieldDescribe("流程别名.") @Column(length = length_255B, name = ColumnNamePrefix + processAlias_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + processAlias_FIELDNAME) @CheckPersist(allowEmpty = true) private String processAlias; diff --git a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/WorkCompleted.java b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/WorkCompleted.java index 389d76b829957d5e123fb893923e5247a28bb45b..a7fa181bfd97875d43cd90ac6f0bcb8fd6fba021 100644 --- a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/WorkCompleted.java +++ b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/WorkCompleted.java @@ -249,7 +249,6 @@ public class WorkCompleted extends SliceJpaObject implements ProjectionInterface public static final String applicationAlias_FIELDNAME = "applicationAlias"; @FieldDescribe("应用别名.") @Column(length = length_255B, name = ColumnNamePrefix + applicationAlias_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + applicationAlias_FIELDNAME) @CheckPersist(allowEmpty = true) private String applicationAlias; @@ -270,7 +269,6 @@ public class WorkCompleted extends SliceJpaObject implements ProjectionInterface public static final String processAlias_FIELDNAME = "processAlias"; @FieldDescribe("流程别名.") @Column(length = length_255B, name = ColumnNamePrefix + processAlias_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + processAlias_FIELDNAME) @CheckPersist(allowEmpty = true) private String processAlias; diff --git a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/WorkLog.java b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/WorkLog.java index 6a54796f3d13dca33bb3c73eb317f14277fdd014..799357238ec3d0e23c81bf156556ea36c1ae7c87 100644 --- a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/WorkLog.java +++ b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/WorkLog.java @@ -267,7 +267,6 @@ public class WorkLog extends SliceJpaObject { @FieldDescribe("应用别名.") @Column(length = AbstractPersistenceProperties.processPlatform_name_length, name = ColumnNamePrefix + applicationAlias_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + applicationAlias_FIELDNAME) @CheckPersist(allowEmpty = true) private String applicationAlias; @@ -290,7 +289,6 @@ public class WorkLog extends SliceJpaObject { @FieldDescribe("流程别名.") @Column(length = AbstractPersistenceProperties.processPlatform_name_length, name = ColumnNamePrefix + processAlias_FIELDNAME) - @Index(name = TABLE + IndexNameMiddle + processAlias_FIELDNAME) @CheckPersist(allowEmpty = true) private String processAlias; diff --git a/o2server/x_query_core_entity/src/main/java/com/x/query/core/entity/Item.java b/o2server/x_query_core_entity/src/main/java/com/x/query/core/entity/Item.java index 1e00a3efb9a9025d0db3c8312e09c1d11040db76..4d1194e33716dfb4c6b8354e8fde608b86b6c006 100644 --- a/o2server/x_query_core_entity/src/main/java/com/x/query/core/entity/Item.java +++ b/o2server/x_query_core_entity/src/main/java/com/x/query/core/entity/Item.java @@ -32,7 +32,7 @@ import com.x.base.core.entity.dataitem.ItemType; import com.x.base.core.project.annotation.FieldDescribe; @Entity -@ContainerEntity(dumpSize = 1000, type = ContainerEntity.Type.content, reference = ContainerEntity.Reference.strong) +@ContainerEntity(dumpSize = 500, type = ContainerEntity.Type.content, reference = ContainerEntity.Reference.strong) @Table(name = PersistenceProperties.Item.table, uniqueConstraints = { @UniqueConstraint(name = PersistenceProperties.Item.table + JpaObject.IndexNameMiddle + JpaObject.DefaultUniqueConstraintSuffix, columnNames = { JpaObject.IDCOLUMN, diff --git a/o2server/x_query_core_entity/src/main/java/com/x/query/core/entity/Query.java b/o2server/x_query_core_entity/src/main/java/com/x/query/core/entity/Query.java index 7cd5895bac573f1237aea526d75f3f41640290d1..a6f644f107c9b5e3230683aae3017e27f9958cd9 100644 --- a/o2server/x_query_core_entity/src/main/java/com/x/query/core/entity/Query.java +++ b/o2server/x_query_core_entity/src/main/java/com/x/query/core/entity/Query.java @@ -33,7 +33,7 @@ import com.x.base.core.entity.annotation.Flag; import com.x.base.core.project.annotation.FieldDescribe; @Entity -@ContainerEntity(dumpSize = 1000, type = ContainerEntity.Type.content, reference = ContainerEntity.Reference.strong) +@ContainerEntity(dumpSize = 10, type = ContainerEntity.Type.content, reference = ContainerEntity.Reference.strong) @Table(name = PersistenceProperties.Query.table, uniqueConstraints = { @UniqueConstraint(name = PersistenceProperties.Query.table + JpaObject.IndexNameMiddle + JpaObject.DefaultUniqueConstraintSuffix, columnNames = { JpaObject.IDCOLUMN, diff --git a/o2server/x_query_core_entity/src/main/java/com/x/query/core/entity/Reveal.java b/o2server/x_query_core_entity/src/main/java/com/x/query/core/entity/Reveal.java index c928ae2b5c0b876add1e7c0ca149d22c666c5790..8fb19df3490ee80e9d2159b8f04d97d8fd7bb582 100644 --- a/o2server/x_query_core_entity/src/main/java/com/x/query/core/entity/Reveal.java +++ b/o2server/x_query_core_entity/src/main/java/com/x/query/core/entity/Reveal.java @@ -30,7 +30,7 @@ import com.x.base.core.entity.annotation.Flag; import com.x.base.core.project.annotation.FieldDescribe; @Entity -@ContainerEntity(dumpSize = 1000, type = ContainerEntity.Type.content, reference = ContainerEntity.Reference.strong) +@ContainerEntity(dumpSize = 10, type = ContainerEntity.Type.content, reference = ContainerEntity.Reference.strong) @Table(name = PersistenceProperties.Reveal.table, uniqueConstraints = { @UniqueConstraint(name = PersistenceProperties.Reveal.table + JpaObject.IndexNameMiddle + JpaObject.DefaultUniqueConstraintSuffix, columnNames = { JpaObject.IDCOLUMN, diff --git a/o2server/x_query_core_entity/src/main/java/com/x/query/core/entity/Stat.java b/o2server/x_query_core_entity/src/main/java/com/x/query/core/entity/Stat.java index 3c9297c61d37f2a008e0a1654d7956f54e84f1ec..145c8d19c7b50bf7d10b89cf747ae12b55c4b04b 100644 --- a/o2server/x_query_core_entity/src/main/java/com/x/query/core/entity/Stat.java +++ b/o2server/x_query_core_entity/src/main/java/com/x/query/core/entity/Stat.java @@ -32,7 +32,7 @@ import com.x.base.core.entity.annotation.Flag; import com.x.base.core.project.annotation.FieldDescribe; @Entity -@ContainerEntity(dumpSize = 1000, type = ContainerEntity.Type.content, reference = ContainerEntity.Reference.strong) +@ContainerEntity(dumpSize = 10, type = ContainerEntity.Type.content, reference = ContainerEntity.Reference.strong) @Table(name = PersistenceProperties.Stat.table, uniqueConstraints = { @UniqueConstraint(name = PersistenceProperties.Stat.table + JpaObject.IndexNameMiddle + JpaObject.DefaultUniqueConstraintSuffix, columnNames = { JpaObject.IDCOLUMN, diff --git a/o2server/x_query_core_entity/src/main/java/com/x/query/core/entity/View.java b/o2server/x_query_core_entity/src/main/java/com/x/query/core/entity/View.java index 2d226e8e80d6bbe6b095683e37bb556fe7b56945..568998692f37c12f63251fd3e6677a020b0904b4 100644 --- a/o2server/x_query_core_entity/src/main/java/com/x/query/core/entity/View.java +++ b/o2server/x_query_core_entity/src/main/java/com/x/query/core/entity/View.java @@ -34,7 +34,7 @@ import com.x.base.core.entity.annotation.Flag; import com.x.base.core.project.annotation.FieldDescribe; @Entity -@ContainerEntity(dumpSize = 1000, type = ContainerEntity.Type.content, reference = ContainerEntity.Reference.strong) +@ContainerEntity(dumpSize = 10, type = ContainerEntity.Type.content, reference = ContainerEntity.Reference.strong) @Table(name = PersistenceProperties.View.table, uniqueConstraints = { @UniqueConstraint(name = PersistenceProperties.View.table + JpaObject.IndexNameMiddle + JpaObject.DefaultUniqueConstraintSuffix, columnNames = { JpaObject.IDCOLUMN,