摘要:
目錄一、流程1.創建流2.中間操作3.終結操作二、中間操作1.過濾filter2.map()3.sorted()4.flatMap5.limit()6.skip(int a)7.去重8.排序三、終結操作1.forEach2.count3.max&min4.collect5.anyMatch(重寫判斷
閱讀全文
摘要:
1.表格初始化 @Data @EqualsAndHashCode(callSuper = true) @Table("表名") // @Table("t_tab_${cid}") 動態表名 @TableMeta("{'mysql-charset':'utf8mb4'}") //索引 @TableIn
閱讀全文
摘要:
package com.osdiot.gas.device.commons.utils; import org.nutz.lang.Strings; import org.nutz.lang.Times; import org.nutz.lang.util.NutMap; import java.s
閱讀全文
摘要:
package com.osdiot.cissync.util; import java.util.concurrent.*; /** * 線程池工具類 * * @Author: Mr.LB * @Date: 2021-03-17 11:36 * @Description: ThreadPoolUt
閱讀全文
摘要:
package com.budwk.starter.excel.utils; import com.budwk.starter.excel.annotation.Excel; import com.budwk.starter.excel.annotation.Excels; import com.b
閱讀全文
摘要:
//lambdaCnd工具類 jar包地址: wk-starter-database-8.0.0.jar public class CndWrapper extends Cnd { public CndWrapper() { } public static CndWrapper NEW() { re
閱讀全文
摘要:
package cn.hutool.core.bean; import cn.hutool.core.bean.copier.BeanCopier; import cn.hutool.core.bean.copier.CopyOptions; import cn.hutool.core.bean.c
閱讀全文
摘要:
public NutMap doSmsSendPost(String content, String mobile) { try { Base_sms_config config = baseSmsConfigService.getConfig(); if (Lang.isNotEmpty(conf
閱讀全文