|
@@ -350,6 +350,7 @@ open class RelationCalcService {
|
|
|
val entity = relationTypeProjectservice.select(SFilter.eq("projectId", projectId), SFilter.eq("relationType", "eq2sp_in"), SFilter.eq("zoneType",tables!!)).entity()
|
|
|
if (entity!=null){
|
|
|
entity.computationalState = 3
|
|
|
+ entity.computingTime = IdUtils.time()
|
|
|
relationTypeProjectservice.update(entity)
|
|
|
}
|
|
|
} catch (e: Exception) {
|
|
@@ -365,6 +366,7 @@ open class RelationCalcService {
|
|
|
val entity = relationTypeProjectservice.select(SFilter.eq("projectId", projectId), SFilter.eq("relationType", "eq2sp_in"), SFilter.eq("zoneType",tables!!)).entity()
|
|
|
if (entity!=null){
|
|
|
entity.computationalState = 1
|
|
|
+ entity.computingTime = IdUtils.time()
|
|
|
relationTypeProjectservice.update(entity)
|
|
|
}
|
|
|
} catch (e: Exception) {
|
|
@@ -377,6 +379,7 @@ open class RelationCalcService {
|
|
|
val entity = relationTypeProjectservice.select(SFilter.eq("projectId", projectId), SFilter.eq("relationType", "eq2sp_in"), SFilter.eq("zoneType",tables!!)).entity()
|
|
|
if (entity!=null){
|
|
|
entity.computationalState = 5
|
|
|
+ entity.computingTime = IdUtils.time()
|
|
|
relationTypeProjectservice.update(entity)
|
|
|
}
|
|
|
}
|