spring mvc接收List集合、JUI传JSP List
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<div class="tabsContent" style="height: 150px;"> <div> <table class="list nowrap itemDetail" addButton="新建诊疗服务录入" width="1400px"> <thead> <tr> <!-- <th type="text" name="" defaultVal="#index#" size="2" fieldClass="digits">序号</th> --> <th defaultVal="注射" type="text" name="surgerys[#index#].name" size="12" fieldClass="required" fieldAttrs="{remote:'validate_remote.html', maxlength:100}">项目名称</th> <th defaultVal="注射" type="text" name="surgerys[#index#].meaning" size="12" fieldClass="required" fieldAttrs="{remote:'validate_remote.html', maxlength:100}">项目内涵</th> <th defaultVal="注射" type="text" name="surgerys[#index#].exceptedContent" size="12" fieldClass="required" fieldAttrs="{remote:'validate_remote.html', maxlength:100}">除外内容</th> <th defaultVal="元" type="text" name="surgerys[#index#].chargeElement" size="12" fieldClass="required" fieldAttrs="{remote:'validate_remote.html', maxlength:100}">计价单位</th> <th defaultVal="个" type="text" name="surgerys[#index#].unit" size="12" fieldClass="required" fieldAttrs="{remote:'validate_remote.html', maxlength:10}">单位</th> <th defaultVal="注射" type="text" name="surgesrys[#index#].specification" size="12" fieldClass="required" fieldAttrs="{remote:'validate_remote.html', maxlength:10}">规格</th> <th defaultVal="45" type="text" name="surgerys[#index#].amountUnit" defaultVal="0.8" size="12" fieldClass="number">单价</th> <th defaultVal="12" type="text" name="surgerys[#index#].elements" size="12" fieldClass="digits">数量</th> <th defaultVal="0.8" type="text" name="surgerys[#index#].amount" size="12" fieldClass="number">金额</th> <th type="enum" name="surgerys[#index#].isMedicalInsurance" size="12" enumUrl="public-resources/manage/isMedicalInsurance.html">医保类型</th> <th defaultVal="注射" type="text" name="surgerys[#index#].instruction" size="12" fieldClass="required" fieldAttrs="{remote:'validate_remote.html', maxlength:100}">说明</th> <th defaultVal="注射" type="text" name="surgerys[#index#].surgeryType" size="12" fieldClass="required" fieldAttrs="{remote:'validate_remote.html', maxlength:100}">类别</th> <th defaultVal="13" type="text" name="surgerys[#index#].selfPayRatio" size="12" fieldClass="number">自付比例</th> <th defaultVal="备注" type="text" name="surgerys[#index#].remark" size="20" fieldClass="required" fieldAttrs="{remote:'validate_remote.html', maxlength:200}">备注</th> <th type="del" width="60">操作</th> </tr> </thead> <tbody></tbody> </table> </div></div> |
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
<tbody> <tr class="unitBox"> <td><input name="surgerys[0].name" value="注射" size="12" class="required textInput" remote="validate_remote.html" maxlength="100" type="text"></td> <td><input name="surgerys[0].meaning" value="注射" size="12" class="required textInput valid" remote="validate_remote.html" maxlength="100" type="text"></td> <td><input name="surgerys[0].exceptedContent" value="注射" size="12" class="required textInput" remote="validate_remote.html" maxlength="100" type="text"></td> <td><input name="surgerys[0].chargeElement" value="元" size="12" class="required textInput" remote="validate_remote.html" maxlength="100" type="text"></td> <td><input name="surgerys[0].unit" value="个" size="12" class="required textInput" remote="validate_remote.html" maxlength="10" type="text"></td> <td><input name="surgesrys[0].specification" value="注射" size="12" class="required textInput" remote="validate_remote.html" maxlength="10" type="text"></td> <td><input name="surgerys[0].amountUnit" value="45" size="12" class="number textInput" type="text"></td> <td><input name="surgerys[0].elements" value="12" size="12" class="digits textInput" type="text"></td> <td><input name="surgerys[0].amount" value="0.8" size="12" class="number textInput" type="text"></td> <td> <!-- 录入二 录入账单信息 诊疗服务 医保类型 --> <div class="combox"> <div id="combox_4178430" class="select"> <a href="javascript:" class="" name="surgery.isMedicalInsurance" value="true">是</a><select class="" name="surgery.isMedicalInsurance"> <option value="true">是</option> <option value="false">否</option> </select> </div> </div> </td> <td><input name="surgerys[0].instruction" value="注射" size="12" class="required textInput" remote="validate_remote.html" maxlength="100" type="text"></td> <td><input name="surgerys[0].surgeryType" value="注射" size="12" class="required textInput" remote="validate_remote.html" maxlength="100" type="text"></td> <td><input name="surgerys[0].selfPayRatio" value="13" size="12" class="number textInput" type="text"></td> <td><input name="surgerys[0].remark" value="备注" size="20" class="required textInput" remote="validate_remote.html" maxlength="200" type="text"></td> <td><a href="javascript:void(0)" class="btnDel ">删除</a></td> </tr> <tr class="unitBox"> <td><input name="surgerys[1].name" value="注射" size="12" class="required textInput valid" remote="validate_remote.html" maxlength="100" type="text"></td> <td><input name="surgerys[1].meaning" value="注射" size="12" class="required textInput valid" remote="validate_remote.html" maxlength="100" type="text"></td> <td><input name="surgerys[1].exceptedContent" value="注射" size="12" class="required textInput" remote="validate_remote.html" maxlength="100" type="text"></td> <td><input name="surgerys[1].chargeElement" value="元" size="12" class="required textInput" remote="validate_remote.html" maxlength="100" type="text"></td> <td><input name="surgerys[1].unit" value="个" size="12" class="required textInput" remote="validate_remote.html" maxlength="10" type="text"></td> <td><input name="surgesrys[1].specification" value="注射" size="12" class="required textInput" remote="validate_remote.html" maxlength="10" type="text"></td> <td><input name="surgerys[1].amountUnit" value="45" size="12" class="number textInput" type="text"></td> <td><input name="surgerys[1].elements" value="12" size="12" class="digits textInput" type="text"></td> <td><input name="surgerys[1].amount" value="0.8" size="12" class="number textInput" type="text"></td> <td> <!-- 录入二 录入账单信息 诊疗服务 医保类型 --> <div class="combox"> <div id="combox_4628796" class="select"> <a href="javascript:" class="" name="surgery.isMedicalInsurance" value="true">是</a><select class="" name="surgery.isMedicalInsurance"> <option value="true">是</option> <option value="false">否</option> </select> </div> </div> </td> <td><input name="surgerys[1].instruction" value="注射" size="12" class="required textInput" remote="validate_remote.html" maxlength="100" type="text"></td> <td><input name="surgerys[1].surgeryType" value="注射" size="12" class="required textInput" remote="validate_remote.html" maxlength="100" type="text"></td> <td><input name="surgerys[1].selfPayRatio" value="13" size="12" class="number textInput" type="text"></td> <td><input name="surgerys[1].remark" value="备注" size="20" class="required textInput" remote="validate_remote.html" maxlength="200" type="text"></td> <td><a href="javascript:void(0)" class="btnDel ">删除</a></td> </tr></tbody> |
|
1
2
3
4
5
|
public class VoucherLineModel { private List<SurgeryImpl> surgerys; // 服务诊疗 private List<MedicineImpl> medicines; // 药品 private List<DiagnosisImpl> diagnosisList; // 手术 |
|
1
2
3
|
@RequestMapping("/addVoucherLineDetail/{oid}")public ModelAndView addVoucherLineDetail(@PathVariable("oid") long oid,VoucherLineModel voucherLineModel, HttpServletRequest request) { |
spring mvc接收List集合、JUI传JSP List的更多相关文章
- Spring MVC之中前端向后端传数据
Spring MVC之中前端向后端传数据和后端向前端传数据是数据流动的两个方向, 在此先介绍前端向后端传数据的情况. 一般而言, 前端向后端传数据的场景, 大多是出现了表单的提交,form表单的内容在 ...
- Spring MVC 实现文件的上传和下载
前些天一位江苏经贸的学弟跟我留言问了我这样一个问题:“用什么技术来实现一般网页上文件的上传和下载?是框架还是Java中的IO流”.我回复他说:“使用Spring MVC框架可以做到这一点,因为Spri ...
- Spring MVC接收参数(Map,List,JSON,Date,2个Bean)(记录一次面试惨状)
题目Spring MVC 接收参数 MapListDate2个BeanJSON Spring MVC接收参数 -Map Spring MVC接收参数 -List Spring MVC接收参数 -dat ...
- 使用Spring mvc接收整个url地址及参数时注意事项
使用Spring mvc接收整个url地址及参数时注意事项:url= http://baidu?oid=9525c1f2b2cd45019b30a37bead6ebbb&td=2015-08- ...
- 关于我使用spring mvc框架做文件上传时遇到的问题
非常感谢作者 原文:https://blog.csdn.net/lingirl/article/details/1714806 昨天尝试着用spring mvc框架做文件上传,犯了挺多不该犯的毛病问题 ...
- spring mvc接收ajax提交的JSON数据,并反序列化为对象
需求:spring mvc接收ajax提交的JSON数据,并反序列化为对象,代码如下: 前台JS代码: //属性要与带转化的对象属性对应 var param={name:'语文',price:16}; ...
- spring mvc接收数组
(一)前言 对于springmvc接收数组的问题啊,我试验过几次,但是了有时候成功了,有时候失败了,也不知道为啥的,然后现在又要用到了,所以打算具体看看到底怎么回事,但是了我实验成功了顺便找了好多资料 ...
- 【spring mvc】后台spring mvc接收List参数报错如下:org.springframework.beans.BeanInstantiationException: Failed to instantiate [java.util.List]: Specified class is an interface
后台spring mvc接收List参数报错如下:org.springframework.beans.BeanInstantiationException: Failed to instantiate ...
- spring mvc 接收页面表单List
很少写博客,如果写的不好请多多包涵! 最近在用Spring mvc时遇到一个问题,在网上搜了很多资料.几乎没看到解决办法! 例如:当我们在做批量添加或者更新时,在Controller层接收表单数据的问 ...
随机推荐
- Radio Station
B. Radio Station time limit per test: 2 seconds memory limit per test: 256 megabytes input: standa ...
- ACM Curling 2.0
在行星MM-21上,今年奥运会之后,冰壶(curling)越来越受欢迎. 但规则与我们有所不同. 该游戏是在冰盘上进行的,在冰棋盘上标有方形网格.他们只用一块石头. 游戏的目的是以最少的动作( th ...
- Go 语言 goto 语句
Go 语言的 goto 语句可以无条件地转移到过程中指定的行. goto语句通常与条件语句配合使用.可用来实现条件转移, 构成循环,跳出循环体等功能. 但是,在结构化程序设计中一般不主张使用goto语 ...
- Android Studio精彩案例(四)《DrawerLayout使用详解仿网易新闻客户端侧边栏 》
转载本专栏文章,请注明出处,尊重原创 .文章博客地址:道龙的博客 为了提高兴趣,咱们开头先看看最终要实现什么样的效果: 侧拉菜单在Android应用中非常常见,它的实现方式太多了,今天我们就说说使用G ...
- 【SSH系列】Hibernate映射 -- 继承映射
开篇前言 在前面的博文中,小编介绍了hibernate中的映射,一对一,一对多,多对多,单向,双向等,今天这篇博文,小编主要来介绍一下hibernate中的继承映射,小伙伴都知道在C#中,如果想要实现 ...
- Android布局概述
布局 布局定义用户界面的视觉结构,如Activity或应用小部件的 UI.您可以通过两种方式声明布局: 在 XML 中声明 UI 元素.Android 提供了对应于 View 类及其子类的简明 XML ...
- 2017年校园招聘ios面试题
一.搜狐快站 1.谈谈你做过的项目: 2.项目中最有成就感的部分: 3.倒计时如何实现?(NSTimer,还有其他的实现方式吗): 4.UIButton的继承关系? 5.iOS中可以进行输入的控件?( ...
- 查看4k对齐,激活.net framework 3.5
查看是否4k对齐 Win+R,打开运行窗口,在窗口中输入“msinfo32",组件”--“存储”--“磁盘”.然后可以在右边栏看到“分区起始偏移”,我们图例中有2个数值,分别是:32256字 ...
- Hazelcast源码剖析之Eviction
v:* { } o:* { } w:* { } .shape { }p.MsoNormal,li.MsoNormal,div.MsoNormal { margin: 0cm; margin-botto ...
- TensorFlow与OpenCV,读取图片,进行简单操作并显示
TensorFlow与OpenCV,读取图片,进行简单操作并显示 1 OpenCV读入图片,使用tf.Variable初始化为tensor,加载到tensorflow对图片进行转置操作,然后openc ...