-
大小: 40.93MB文件类型: .zip金币: 1下载: 0 次发布日期: 2023-07-05
- 语言: 数据库
- 标签:
资源简介
里面包括说明文档,可以二次开发,还包括数据库sql文件,可以直接在本地导入使用测试。
代码片段和文件信息
package com.forestry.controller.sys;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import com.forestry.core.ForestrybaseController;
import com.forestry.model.sys.Attachment;
import com.forestry.service.sys.AttachmentService;
/**
* @author Yang Tian
* @email 1298588579@qq.com
*/
@Controller
@RequestMapping(“/sys/attachment“)
public class AttachmentController extends ForestrybaseController {
@Resource
private AttachmentService attachmentService;
@RequestMapping(“/getFlower“)
public String getFlower(HttpServletRequest request HttpServletResponse response) throws IOException {
String epcId = request.getParameter(“epcId“);
Listject[]> flowerList = attachmentService.queryFlowerList(epcId);
Attachment attachment = null;
List attachmentList = new ArrayList();
for (int i = 0; i < flowerList.size(); i++) {
attachment = new Attachment();
attachment.setFileName(String.valueOf(flowerList.get(i)[0]));
attachment.setFilePath(String.valueOf(flowerList.get(i)[1]));
attachment.setDescription(String.valueOf(flowerList.get(i)[2]));
attachment.setEpcId(String.valueOf(flowerList.get(i)[3]));
attachmentList.add(attachment);
}
writeJSON(response attachmentList);
return null;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-09-30 13:40 Extjs完整大型项目\
目录 0 2015-09-30 12:02 Extjs完整大型项目\my-forestry\
文件 5314 2015-09-30 12:15 Extjs完整大型项目\my-forestry\.classpath
文件 1407 2015-09-30 12:06 Extjs完整大型项目\my-forestry\.project
目录 0 2015-09-30 12:05 Extjs完整大型项目\my-forestry\.settings\
文件 525 2014-11-19 15:45 Extjs完整大型项目\my-forestry\.settings\.jsdtscope
文件 90 2014-11-19 15:49 Extjs完整大型项目\my-forestry\.settings\com.genuitec.eclipse.core.prefs
文件 57 2015-09-30 12:05 Extjs完整大型项目\my-forestry\.settings\org.eclipse.core.resources.prefs
文件 598 2015-09-30 12:27 Extjs完整大型项目\my-forestry\.settings\org.eclipse.jdt.core.prefs
文件 644 2014-11-19 15:48 Extjs完整大型项目\my-forestry\.settings\org.eclipse.wst.common.component
文件 345 2014-11-19 15:45 Extjs完整大型项目\my-forestry\.settings\org.eclipse.wst.common.project.facet.core.xm
文件 49 2014-11-19 15:45 Extjs完整大型项目\my-forestry\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2014-11-19 15:45 Extjs完整大型项目\my-forestry\.settings\org.eclipse.wst.jsdt.ui.superType.name
目录 0 2015-09-30 12:03 Extjs完整大型项目\my-forestry\WebContent\
目录 0 2015-09-30 12:02 Extjs完整大型项目\my-forestry\WebContent\me
文件 39 2014-09-14 21:52 Extjs完整大型项目\my-forestry\WebContent\me
目录 0 2015-09-30 12:03 Extjs完整大型项目\my-forestry\WebContent\WEB-INF\
目录 0 2015-09-30 12:27 Extjs完整大型项目\my-forestry\WebContent\WEB-INF\classes\
文件 3894 2015-09-30 12:06 Extjs完整大型项目\my-forestry\WebContent\WEB-INF\classes\applicationContext.xm
目录 0 2015-09-30 12:27 Extjs完整大型项目\my-forestry\WebContent\WEB-INF\classes\com\
目录 0 2015-09-30 12:27 Extjs完整大型项目\my-forestry\WebContent\WEB-INF\classes\com\forestry\
目录 0 2015-09-30 12:27 Extjs完整大型项目\my-forestry\WebContent\WEB-INF\classes\com\forestry\controller\
目录 0 2015-09-30 12:27 Extjs完整大型项目\my-forestry\WebContent\WEB-INF\classes\com\forestry\controller\sys\
文件 2550 2015-09-30 12:27 Extjs完整大型项目\my-forestry\WebContent\WEB-INF\classes\com\forestry\controller\sys\AttachmentController.class
文件 12787 2015-09-30 12:27 Extjs完整大型项目\my-forestry\WebContent\WEB-INF\classes\com\forestry\controller\sys\AuthorityController.class
文件 8909 2015-09-30 12:27 Extjs完整大型项目\my-forestry\WebContent\WEB-INF\classes\com\forestry\controller\sys\ConfigController.class
文件 5667 2015-09-30 12:27 Extjs完整大型项目\my-forestry\WebContent\WEB-INF\classes\com\forestry\controller\sys\DepartmentController.class
文件 19335 2015-09-30 12:27 Extjs完整大型项目\my-forestry\WebContent\WEB-INF\classes\com\forestry\controller\sys\ForestryController.class
文件 9938 2015-09-30 12:27 Extjs完整大型项目\my-forestry\WebContent\WEB-INF\classes\com\forestry\controller\sys\ForestryTypeController.class
文件 1522 2015-09-30 12:27 Extjs完整大型项目\my-forestry\WebContent\WEB-INF\classes\com\forestry\controller\sys\MonitorLogController.class
文件 2322 2015-09-30 12:27 Extjs完整大型项目\my-forestry\WebContent\WEB-INF\classes\com\forestry\controller\sys\RoleAuthorityController.class
............此处省略2852个文件信息
- 上一篇:简单的记帐APP
- 下一篇:MySQL5.0.27_win32
评论
共有 条评论