将插入语句获取的id快速set到另一个数组对象里去

public static void main(String[] args) {
     List<CgcEnterpriseBusinessHoursReq> businessHoursReqs=req.getEncEnterpriseBusinessHoursReq();

        for (int i = 0; i < businessHoursReqs.size(); i++) {
            CgcEnterpriseBusinessHoursReq cgcEnterpriseBusinessHoursReq =  businessHoursReqs.get(i);
                cgcEnterpriseBusinessHoursReq.setEnterpriseId(enterpriseId);
                enterpriseBasicMapper.insertBusinessHours(cgcEnterpriseBusinessHoursReq);
                Long timeId=cgcEnterpriseBusinessHoursReq.getId();
                List<CgcEnterpriseBusinessTimeReq> cgcEnterpriseBusinessTimeReq=cgcEnterpriseBusinessHoursReq.getCgcEnterpriseBusinessTimeReq();
                cgcEnterpriseBusinessTimeReq.stream().filter(Objects::nonNull).forEach(a -> a.setBusinessDayId(timeId));
                enterpriseBasicMapper.insertBusinessTime(cgcEnterpriseBusinessTimeReq);
            }
}
好的,您想了解如何使用MyBatis新增两个字段,一个数组一个是单个参数。首先,您需要在MyBatis的mapper文件中编写插入语句,语句中需要包含这两个字段。例如: ```xml <insert id="insertData" parameterType="com.example.Data"> INSERT INTO data (name, age, hobbies) VALUES (#{name}, #{age}, #{hobbies}) </insert> ``` 在这个例子中,插入语句中包含三个字段:name、age和hobbies。其中,name和age是单个参数,可以直接使用#{}来引用。而hobbies是一个数组,需要使用MyBatis提供的foreach标签来循环插入。例如: ```xml <insert id="insertData" parameterType="com.example.Data"> INSERT INTO data (name, age, hobbies) VALUES (#{name}, #{age}, <foreach collection="hobbies" item="hobby" separator=","> #{hobby} </foreach> ) </insert> ``` 在这个例子中,我们使用了foreach标签来循环插入hobbies数组中的每个元素。其中,collection属性指定了要循环的数组,item属性指定了循环中的变量名,separator属性指定了每个元素之间的分隔符。 在Java代码中,您可以创建一个Data对象来传递参数。例如: ```java Data data = new Data(); data.setName("John"); data.setAge(30); data.setHobbies(new String[] {"reading", "swimming", "travelling"}); dataMapper.insertData(data); ``` 在这个例子中,我们创建了一个Data对象,并设置了name、age和hobbies属性。然后,我们调用dataMapper的insertData方法来插入数据。MyBatis会自动将Data对象中的属性映射到插入语句中的对应位置。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值