Commit 97e8f0cd authored by LSL's avatar LSL

结清默认结清账单

parent cc55aeba
...@@ -3,6 +3,7 @@ package com.jqtx.windows.component.impl; ...@@ -3,6 +3,7 @@ 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;
...@@ -18,7 +19,7 @@ public class RedeemComponentImpl implements RedeemComponent { ...@@ -18,7 +19,7 @@ public class RedeemComponentImpl implements RedeemComponent {
@Override @Override
public void insert(List<RedeemModel> models) { public void insert(List<RedeemModel> models) {
models.stream().map(e -> windowsRedeemMapper.insert(CglibUtil.copy(e, WindowsRedeem.class))); models.forEach(e -> windowsRedeemMapper.insert(CglibUtil.copy(e, WindowsRedeem.class)));
} }
} }
...@@ -55,7 +55,7 @@ public class RedeemJob { ...@@ -55,7 +55,7 @@ public class RedeemJob {
* @param jsonResult * @param jsonResult
* @return * @return
*/ */
private List<RedeemModel> getlist(String jsonResult) { public static List<RedeemModel> getlist(String jsonResult) {
ArrayList<RedeemModel> list = new ArrayList<>(); ArrayList<RedeemModel> list = new ArrayList<>();
String[] split = jsonResult.split("\n"); String[] split = jsonResult.split("\n");
if (split == null) { if (split == null) {
...@@ -80,8 +80,10 @@ public class RedeemJob { ...@@ -80,8 +80,10 @@ public class RedeemJob {
} }
public static void main(String[] args) { public static void main(String[] args) {
String date = DateUtil.format(new Date(), "yyyyMMdd");
System.out.println(date); String ss= "BA11111111|1|1|2023-11-22|2023-10-22|8|73.00|0.00|2.04|75.04|\n";
List<RedeemModel> getlist = getlist(ss);
} }
} }
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