From 04345420e457ccffcfc94646fde4f5a2204164c3 Mon Sep 17 00:00:00 2001
From: 6c <420680616@qq.com>
Date: 星期三, 15 十月 2025 10:31:18 +0800
Subject: [PATCH] 移动端加载mvc
---
src/main/java/com/product/mobile/core/service/ApplicationsService.java | 20 ++++++++++----------
1 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/src/main/java/com/product/mobile/core/service/ApplicationsService.java b/src/main/java/com/product/mobile/core/service/ApplicationsService.java
index 9969764..7ba69b2 100644
--- a/src/main/java/com/product/mobile/core/service/ApplicationsService.java
+++ b/src/main/java/com/product/mobile/core/service/ApplicationsService.java
@@ -1,14 +1,13 @@
package com.product.mobile.core.service;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.stereotype.Component;
-
import com.product.core.dao.BaseDao;
import com.product.core.entity.DataTableEntity;
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
import com.product.core.service.support.AbstractBaseService;
import com.product.util.BaseUtil;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Component;
/**
* 鎵嬫満绔紝鑾峰彇鐢ㄦ埛鎵�鏈夊簲鐢�
@@ -31,30 +30,31 @@
if(BaseUtil.dataTableIsEmpty(fse.getSubDataTable("systemSeniorQueryString"))){
queryFilter = "";
}else {
-
+
}
+ final String TEMP_TABLE = "temp_table";
DataTableEntity dTableEntity = new DataTableEntity();
- FieldSetEntity moudel1=new FieldSetEntity();
+ FieldSetEntity moudel1=new FieldSetEntity(TEMP_TABLE);
moudel1.setValue("name", "琛屾斂绠$悊");
moudel1.setValue("uuid", "adasdgddddfadfs");
- FieldSetEntity moudel2=new FieldSetEntity();
+ FieldSetEntity moudel2=new FieldSetEntity(TEMP_TABLE);
moudel2.setValue("name", "椤圭洰绠$悊");
moudel2.setValue("uuid", "adasdgddddfadfs");
dTableEntity.addFieldSetEntity(moudel1);
dTableEntity.addFieldSetEntity(moudel2);
-
+
DataTableEntity f1=new DataTableEntity();
- FieldSetEntity function1=new FieldSetEntity();
+ FieldSetEntity function1=new FieldSetEntity(TEMP_TABLE);
function1.setValue("name","瀹㈡埛绠$悊");
function1.setValue("icon","cc");
function1.setValue("path","/asdfwasss");
function1.setValue("uuid","asdfkldsjfelsdfdsf");
- FieldSetEntity function2=new FieldSetEntity();
+ FieldSetEntity function2=new FieldSetEntity(TEMP_TABLE);
function2.setValue("name","鎶ヨ〃绠$悊");
function2.setValue("icon","cc");
function2.setValue("path","/asdfwasss");
function2.setValue("uuid","asdfkldsjfelsdfdsf");
- FieldSetEntity function3=new FieldSetEntity();
+ FieldSetEntity function3=new FieldSetEntity(TEMP_TABLE);
function3.setValue("name","鍏枃绠$悊");
function3.setValue("icon","cc");
function3.setValue("path","/asdfwasss");
--
Gitblit v1.9.2