Browse Source

teamwork后台服务

luojing 5 years ago
parent
commit
291f2c158c

+ 4 - 0
o2server/x_teamwork_core_entity/src/main/java/com/x/teamwork/core/entity/PersistenceProperties.java

@@ -44,6 +44,10 @@ public final class PersistenceProperties extends AbstractPersistenceProperties {
 		public static final String table = "TEW_PIORITY";
 		public static final String table = "TEW_PIORITY";
 	}
 	}
 	
 	
+	public static class Config {
+		public static final String table = "TEW_CONFIG";
+	}
+	
 	public static class TaskDetail {
 	public static class TaskDetail {
 		public static final String table = "TEW_TASKDETAIL";
 		public static final String table = "TEW_TASKDETAIL";
 	}
 	}

+ 1 - 1
o2server/x_teamwork_core_entity/src/main/java/com/x/teamwork/core/entity/Project.java

@@ -124,7 +124,7 @@ public class Project extends SliceJpaObject {
 	@FieldDescribe("是否可新建任务")
 	@FieldDescribe("是否可新建任务")
 	@Column( name = ColumnNamePrefix + createable_FIELDNAME)
 	@Column( name = ColumnNamePrefix + createable_FIELDNAME)
 	@Index( name = TABLE + IndexNameMiddle + createable_FIELDNAME )
 	@Index( name = TABLE + IndexNameMiddle + createable_FIELDNAME )
-	private Boolean createable = false;
+	private Boolean createable = true;
 	
 	
 	public static final String creatorPerson_FIELDNAME = "creatorPerson";
 	public static final String creatorPerson_FIELDNAME = "creatorPerson";
 	@FieldDescribe("创建者,可能为System,如果由系统创建。")
 	@FieldDescribe("创建者,可能为System,如果由系统创建。")