摘要: // 格式化时间 DateTimeFormatter df = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"); // 获取当前系统时间 LocalDateTime toDay = LocalDateTime.now(); /* 判断当天时间是否 阅读全文
posted @ 2021-07-09 18:56 这很周锐 阅读(1577) 评论(0) 推荐(0) 编辑
摘要: reports = reports.stream().collect(Collectors.collectingAndThen( Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(YyAmazonInventoryRep 阅读全文
posted @ 2021-06-22 14:38 这很周锐 阅读(1384) 评论(0) 推荐(0) 编辑
摘要: HashMap<String, LogisticsShipmentDTO.LogisticsShipmentOpt> map = Maps.newHashMap(); //根据sku+ 市场--合并入库数量及总运费 shipmentOptList.stream().forEach(shipmentO 阅读全文
posted @ 2021-06-22 14:09 这很周锐 阅读(466) 评论(0) 推荐(0) 编辑
摘要: 一、注册和登录(注册登录模块) a,注册: b,登录 二、系统主页面 业务分类(erp、fba、风控) 以下图片从上往下先erp再fba 三、绑定店铺授权(erp模块) 1)、开启服务商权限 2)、查看授权帮助进行绑定店铺同步平台订单 2)、系统自主下单(导入订单和手工订单) a1、导入订单 a2、 阅读全文
posted @ 2021-04-12 14:54 这很周锐 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 1、官网下载工具:http://cxf.apache.org/download.html 2、安装环境变量 a、CXF_HOME b、并添加%CXF_HOME %/bin到path环境变量 3、CMD命令行输入wsdl2java -help,有正常提示说明环境已经正确配置。 4、进入解压文件的bin 阅读全文
posted @ 2021-03-09 11:41 这很周锐 阅读(2769) 评论(0) 推荐(0) 编辑
摘要: mvc: File file = ResourceUtils.getFile("classpath:conf/bill.xls"); springboot: ClassLoader classLoader = getClass().getClassLoader(); /** getResource( 阅读全文
posted @ 2020-12-02 12:50 这很周锐 阅读(256) 评论(0) 推荐(0) 编辑
摘要: package com.glbpay.common.model.base; import java.io.Serializable; import java.math.BigDecimal; import java.util.Currency; /** * 货币类,这个类是不可修改的 * 单币种货币 阅读全文
posted @ 2020-11-25 17:54 这很周锐 阅读(670) 评论(0) 推荐(0) 编辑
摘要: /** * 商品单价 */ @NotNull(mesage = "商品单价不能为空") @JsonSerialize(using = MoneyFormart.class) 放在java bean属性上 private Long productPrice; 阅读全文
posted @ 2020-11-25 16:31 这很周锐 阅读(397) 评论(0) 推荐(0) 编辑
摘要: 1、自定义注解 /** * @program: * @description: 自定义注解实现javabean属性校验 * @author: Mr.zhourui * @create: 2020-07-03 17:10 **/ @Documented @Retention(RetentionPoli 阅读全文
posted @ 2020-10-10 14:23 这很周锐 阅读(1991) 评论(1) 推荐(0) 编辑
摘要: vue: 请求头: 后台: 阅读全文
posted @ 2020-09-16 18:30 这很周锐 阅读(219) 评论(0) 推荐(0) 编辑