Commit cbd5d7cb authored by LSL's avatar LSL

代偿日期生成

parent 47d95b8e
...@@ -3,12 +3,13 @@ package com.jqtx.windows.component.impl; ...@@ -3,12 +3,13 @@ package com.jqtx.windows.component.impl;
import cn.hutool.extra.cglib.CglibUtil; import cn.hutool.extra.cglib.CglibUtil;
import com.jqtx.windows.component.RedeemComponent; import com.jqtx.windows.component.RedeemComponent;
import com.jqtx.windows.component.model.RedeemModel; import com.jqtx.windows.component.model.RedeemModel;
import com.jqtx.windows.repository.entity.WindowsBurden;
import com.jqtx.windows.repository.entity.WindowsRedeem; import com.jqtx.windows.repository.entity.WindowsRedeem;
import com.jqtx.windows.repository.mapper.WindowsRedeemMapper; import com.jqtx.windows.repository.mapper.WindowsRedeemMapper;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.List; import java.util.List;
@Service @Service
...@@ -19,7 +20,14 @@ public class RedeemComponentImpl implements RedeemComponent { ...@@ -19,7 +20,14 @@ public class RedeemComponentImpl implements RedeemComponent {
@Override @Override
public void insert(List<RedeemModel> models) { public void insert(List<RedeemModel> models) {
models.forEach(e -> windowsRedeemMapper.insert(CglibUtil.copy(e, WindowsRedeem.class))); List<WindowsRedeem> windowsRedeems = new ArrayList<>();
models.forEach(e -> {
WindowsRedeem windowsRedeem = CglibUtil.copy(e, WindowsRedeem.class);
windowsRedeem.setGmtCreated(LocalDateTime.now());
windowsRedeem.setGmtModified(LocalDateTime.now());
windowsRedeems.add(windowsRedeem);
});
windowsRedeems.forEach(e -> windowsRedeemMapper.insert(e));
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment