06 2022 档案

摘要:wrapper.select("distinct user_code").eq("id", userDTO.getId()); 阅读全文
posted @ 2022-06-27 17:56 wyuioahxvm 阅读(635) 评论(0) 推荐(0)
摘要://定一个静态方法,专门生成单个的号码 public static void getPhoneNum() { //给予真实的初始号段,号段是在百度上面查找的真实号段 String[] start = {"133", "149", "153", "173", "177", "180", "181", 阅读全文
posted @ 2022-06-27 17:52 wyuioahxvm 阅读(1) 评论(0) 推荐(0)
摘要:insert into persons (id_p, lastname , firstName, city ) values (200,'haha' , 'deng' , 'shenzhen'), (201,'haha2' , 'deng' , 'GD'), (202,'haha3' , 'deng 阅读全文
posted @ 2022-06-27 17:50 wyuioahxvm 阅读(94) 评论(0) 推荐(0)
摘要:IntelliJ IDEA 官方网站 http://www.jetbrains.com/idea/ 阅读全文
posted @ 2022-06-21 11:14 wyuioahxvm 阅读(2574) 评论(0) 推荐(0)
摘要:String jsonString = JSON.toJSONString(httpResponse.getData());UserGoldInfoResDto userGoldInfoResDto =JSON.parseObject(jsonString, UserGoldInfoResDto.c 阅读全文
posted @ 2022-06-21 11:10 wyuioahxvm 阅读(92) 评论(0) 推荐(0)
摘要:一、问题 不知道你们是否和我一样,有时候需要查找 /Usr 路径下的文件夹,但是直接在 Finder 中找不到这个路径,咋办呢? 二、解决方法 其实这是因为 /Usr 路径被隐藏了,只需要一句命令即可解决: 在Finder 中点击快捷键 Cmd+Shift+G 在弹出的目录中填写/Usr/bin 就 阅读全文
posted @ 2022-06-21 11:07 wyuioahxvm 阅读(430) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-06-21 11:04 wyuioahxvm 阅读(95) 评论(0) 推荐(0)
摘要:可以使用compareTo(Bigdecimal bigdecimal),传入“BigDecimal.ZERO”返回0表示等于0,返回1表示大于0,返回-1表示小于0: System.out.println("0-0="+new BigDecimal("0").compareTo(BigDecima 阅读全文
posted @ 2022-06-15 11:18 wyuioahxvm 阅读(5723) 评论(0) 推荐(0)
摘要:/** * 转换时间格式为xx小时xx分xx秒 * @param second xxxxx */public String changeTimeFormat(String second) { Integer seconds = Integer.valueOf(second); // 得到分钟数 In 阅读全文
posted @ 2022-06-15 10:45 wyuioahxvm 阅读(139) 评论(0) 推荐(0)
摘要:/** * 转换时间格式为xx分xx秒 入参毫秒 四舍五入 * @param millisecond xxxxx */public String changeTimeFormat(String millisecond) { if(StringUtils.isBlank(millisecond)){ 阅读全文
posted @ 2022-06-15 10:39 wyuioahxvm 阅读(132) 评论(0) 推荐(0)