- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章mybatis动态插入list传入List参数的实例代码由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
mybatis动态插入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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
|
<insert id=
"saveprpcitemkindlist"
parametertype=
"java.util.list"
>
insert into prpcitemkind
(riskcode, itemkindno, familyno, familyname, projectcode, clausecode,
clausename,
kindcode, kindname, itemno, itemcode, itemdetailname, groupno, modecode,
modename, startdate,
starthour, enddate, endhour, model, buydate, addressno, calculateflag, currency,
unitamount,
quantity, unit, value, amount, rateperiod, rate, shortrateflag, shortrate,
prepremium, calpremium,
basepremium, benchmarkpremium, discount, adjustrate, unitpremium, premium,
deductiblerate, deductible,
flag, inserttimeforhis, operatetimeforhis, taxrate, taxflag, taxfee,
netpremium, taxfee_gb, taxfee_lb, alltaxfee, allnetpremium,proposalno)
<foreach collection=
"list"
item=
"item"
index=
"index"
separator=
"union all"
>
<trim prefix=
"select"
suffix=
"from dual"
>
<choose>
<when test=
"item.riskcode != null"
>#{item.riskcode},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.itemkindno != null"
>#{item.itemkindno},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.familyno != null"
>#{item.familyno},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.familyname != null"
>#{item.familyname},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.projectcode != null"
>#{item.projectcode},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.clausecode != null"
>#{item.clausecode},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.clausename != null"
>#{item.clausename},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.kindcode != null"
>#{item.kindcode},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.kindname != null"
>#{item.kindname},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.itemno != null"
>#{item.itemno},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.itemcode != null"
>#{item.itemcode},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.itemdetailname != null"
>#{item.itemdetailname},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.groupno != null"
>#{item.groupno},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.modecode != null"
>#{item.modecode},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.modename != null"
>#{item.modename},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.startdate != null"
>#{item.startdate},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.starthour != null"
>#{item.starthour},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.enddate != null"
>#{item.enddate},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.endhour != null"
>#{item.endhour},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.model != null"
>#{item.model},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.buydate != null"
>#{item.buydate},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.addressno != null"
>#{item.addressno},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.calculateflag != null"
>#{item.calculateflag},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.currency != null"
>#{item.currency},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.unitamount != null"
>#{item.unitamount},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.quantity != null"
>#{item.quantity},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.unit != null"
>#{item.unit},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.value != null"
>#{item.value},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.amount != null"
>#{item.amount},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.rateperiod != null"
>#{item.rateperiod},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.rate != null"
>#{item.rate},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.shortrateflag != null"
>#{item.shortrateflag},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.shortrate != null"
>#{item.shortrate},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.prepremium != null"
>#{item.prepremium},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.calpremium != null"
>#{item.calpremium},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.basepremium != null"
>#{item.basepremium},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.benchmarkpremium != null"
>#{item.benchmarkpremium},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.discount != null"
>#{item.discount},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.adjustrate != null"
>#{item.adjustrate},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.unitpremium != null"
>#{item.unitpremium},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.premium != null"
>#{item.premium},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.deductiblerate != null"
>#{item.deductiblerate},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.deductible != null"
>#{item.deductible},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.flag != null"
>#{item.flag},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.inserttimeforhis != null"
>#{item.inserttimeforhis},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.operatetimeforhis != null"
>#{item.operatetimeforhis},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.taxrate != null"
>#{item.taxrate},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.taxflag != null"
>#{item.taxflag},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.taxfee != null"
>#{item.taxfee},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.netpremium != null"
>#{item.netpremium},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.taxfee_gb != null"
>#{item.taxfee_gb},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.taxfee_lb != null"
>#{item.taxfee_lb},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.alltaxfee != null"
>#{item.alltaxfee},</when>
<otherwise>
null
,</otherwise>
</choose>
<choose>
<when test=
"item.allnetpremium != null"
>#{item.allnetpremium},</when>
<otherwise>
null
,</otherwise>
</choose>
#{item.proposalno}
</trim>
</foreach>
</insert>
|
mybatis 传入list参数的实例代码如下所述:
java代码 。
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
|
//dao 代码 如果传入的参数是数组,也一样
void
insertdefaultmsg(
@param
(
"idslist"
) arraylist<string> idslist);
//xml文件
<update id=
"insertdefaultmsg"
parametertype=
"java.util.list"
>
update
plf_pur_delivery_plan p
set
p.promise_delivery_amount = p.quantity_req,
p.promise_delivery_time = p.quantity_time
where p.id in
<foreach item=
"item"
collection=
"idslist"
separator=
","
open=
"("
close=
")"
index=
""
>
#{item, jdbctype=varchar}
</foreach>
</update>
//如果传入字符串
//service 代码
map<string, string> map = bean.getdatas().get(
0
);
string ids = map.get(
"ids"
);
string[] idsarr = ids.split(
","
);
string inid =
""
;
for
(
int
i =
0
; i < idsarr.length; i++) {
if
(i != idsarr.length -
1
) {
inid +=
"'"
+ idsarr[i] +
"',"
;
}
else
{
inid +=
"'"
+ idsarr[i] +
"'"
;
}
}
list<map<string, string>> list = purdeliveryplandao
.getplanlistmanual(inid);
//dao层代码
list<map<string, string>> getplanlistmanual(
@param
(
"inid"
) string inid);
//xml 文件
<select id=
"getplanlistmanual"
parametertype=
"java.lang.string"
resulttype=
"java.util.map"
>
select
p.supplier_code,
p.pur_order_no,
if
(
p.update_times >
0
,
'修改订单'
,
'新订单'
) as order_type
from
plf_pur_delivery_plan p
where p.is_notice =
'0'
and p.is_delete =
'1'
and p.id in(<![cdata[${inid}]]>)
group by p.supplier_code,
p.pur_order_no
order by p.supplier_code
</select>
|
总结 。
以上所述是小编给大家介绍的mybatis动态插入list传入list参数的实例代码,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的! 。
最后此篇关于mybatis动态插入list传入List参数的实例代码的文章就讲到这里了,如果你想了解更多关于mybatis动态插入list传入List参数的实例代码的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
在 JavaScript 中,我们可以动态创建 元素并附加到 部分,以便为大量元素应用 CSS 规则。 这种方法的优点或缺点是什么? 如果它确实提供了与元素上的 javascript 迭代相比的性
我有这个代码 import "./HTTPMethod.dart"; import '../../DataModel/DataModel.dart'; mixin RouterMixin { HT
哪些 OLAP 工具支持动态、动态地创建维度或层次结构? 例如,层次结构将成员定义为:“前 5 名”、“前 6-10 名”、“其他”... 计算成员是通常的答案,我正在寻找不同的东西。计算器的问题。成
我正在 CakePHP 中创建一个“表单编辑器”。 该界面允许用户选择要应用于字段的验证,例如数字、电子邮件等 因此,我需要根据用户输入为模型动态创建验证。为此,我可以使用验证对象:https://b
这是一个场景: 我有一个Web服务,我们将其称为部署在tomcat(轴)上的StockQuoteService。通过此 Web 服务公开了 getStockQuote() 方法。 现在,我想构建一个
我正在尝试从服务器获取 JSON 响应并将其输出到控制台。 Future login() async { var response = await http.get( Uri.
我从另一个问题中得到了这段代码(感谢 chunhunghan)。我需要创建一个登录屏幕,并尝试根据服务器发回给我的响应来验证用户凭据,但是每次我尝试运行代码时,它都会给我“未处理的异常:Interna
当我在“Dart”主程序中运行它时,一切正常,并且我得到了一个与会者列表。但是,当我在我的 Flutter 应用程序中调用它时,出现错误: flutter:“List”类型不是“List>”类型的子类
本文实例为大家分享了js实现验证码动态干扰的具体代码,供大家参考,具体内容如下 效果一 效果二 代码一 ?
目前我正在为我的网站使用 No-Ip,我想使用 cloudflare 来抵御 ddos 和机器人程序。我注意到您需要一个用于 cloudflare 的域。我还搜索了网络,发现了一个叫做 cloud
有没有办法在 Excel VBA 中构建动态 if 语句?基本上我正在尝试创建一个参数化计算,用户将能够输入不同的变量,即 变量 1 “变量 2” “变量 3” 在这种情况下 变量 1 是单元格引用
大家好, 请查看上面的图片,我有两张 table 。在下面代码的第一个表中,我得到了这种格式。 但我想像 Table2 那样格式化,每个合并单元格中的行数是动态的,而且不一样。 有没有办法像table
如何根据我添加的 View 修改标题部分的高度?heightForHeaderInSection在 viewForHeaderInSection 之前被调用我不知道 View 大小,直到我创建它。 最
是否存在在运行时生成 AST/解析树的解析器?有点像一个库,它会接受一串 EBNF 语法或类似的东西并吐出数据结构? 我知道 antlr、jlex 和他们的同类。他们生成可以做到这一点的源代码。 (喜
我在持有汽车制造商的表格上有一个 MultipleChoiceField。我想将我的汽车数据库过滤到已检查的品牌,但这会导致问题。如何动态获取所有 Q(make=...) 语句? 我如何开始:['va
$end = preg_replace($pattern, $replacement, $str); 如何使替换字符串 $replacement 随 $str 中的每次匹配而变化?例如,我想用关联的图
我正在编写一个 VBA 程序,用于过滤表中的值。我试图使其成为一个适用于您提供的所有表格的通用程序。在我的程序中,我必须设置它正在过滤的表的范围:Set rng = dataSheet.Range("
我正在循环一个元素数组,并且我想使用给定的模板递归地显示该元素 然后在该模板内使用带有切换功能的按钮来显示/隐藏给定元素的Child的更深级别模板(Child也是一个元素) 这是我的模板
从客户端(html)发送表单,服务器端通过选择选项之一决定运行哪个函数。 const decideWho = (form) => { const choice = form.choice; c
我有一个具有以下属性的按钮: circle_normal.xml(在 res/drawable 中) circle.xml(在 res/drawable 中)
我是一名优秀的程序员,十分优秀!