This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| vw- 2022-09-23 14:55:06.718 [http-nio-9167-exec-4, ,] INFO jdbc.sqltiming.sqlTimingOccurred:373 - select 1 | |
| {executed in 7 msec} | |
| vw- 2022-09-23 14:55:37.495 [http-nio-9167-exec-4, ,] INFO jdbc.sqltiming.sqlTimingOccurred:373 - select count(*) from ( SELECT sii.id FROM biz_stock_packet_info spi inner join biz_stock_item_info | |
| sii on spi.stock_item_id=sii.stock_item_id inner join biz_stock_info si on sii.stock_id=si.stock_id | |
| left join base_customer_register_certificate_info crc on crc.del_flag=0 and si.certificate_no=crc.certificate_no | |
| and crc.supplier_org_id=si.supplier_org_id and crc.customer_org_id=si.hospital_id where spi.type=1 | |
| and spi.del_flag=0 and (spi.`status` in (1,2,3,4,5) or (spi.status = 6 and exists (select 1 | |
| from biz_stock_lock_item_info lii , biz_stock_lock_info li where lii.lock_id = li.lock_id and | |
| spi.packet_id = lii.packet_id and li.del_flag = false and lii.del_flag = false and li.type | |
| in (6,7) and li.status = 3) ) ) and spi.manage_model!=3 and spi.warehouse_id='5ACB7C168C7D4FBB9BECF |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| vw- 2022-09-22 18:07:16.513 [http-nio-9167-exec-1, ,] INFO o.a.s.session.mgt.AbstractValidatingSessionManager.enableSessionValidation:233 - Enabling session validation scheduler... | |
| vw- 2022-09-22 18:07:17.137 [http-nio-9167-exec-1, ,] INFO jdbc.sqltiming.sqlTimingOccurred:373 - select 1 | |
| {executed in 3 msec} | |
| vw- 2022-09-22 18:07:17.150 [http-nio-9167-exec-1, ,] INFO jdbc.sqltiming.sqlTimingOccurred:373 - select * from base_user_info where user_login_name = 'admin' and del_flag = 0 | |
| {executed in 2 msec} | |
| vw- 2022-09-22 18:07:17.180 [http-nio-9167-exec-1, ,] INFO jdbc.sqltiming.sqlTimingOccurred:373 - select wi.warehouse_id, wi.warehouse_no, wi.warehouse_name_py, wi.dept_id, wi.warehouse_level, | |
| wi.warehouse_name, ifnull(wrai.receipt_contact_phone,'') warehousePhone, dept.dept_name, ifnull( | |
| wrai.receipt_address, '' ) warehouseAddress from base_warehouse_info wi left join base_dept_info | |
| dept ON dept.dept_id = wi.dept_id left join base_warehouse_receipt_address_info wrai ON wi.warehouse_id | |
| = wrai.warehous |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "mapreduce/mapreduce.h" | |
| // User’s map function | |
| class WordCounter : public Mapper { | |
| public: virtual void Map(const MapInput& input) { | |
| const string& text = input.value(); const int n = text.size(); for (int i = 0; i < n; ) { | |
| // Skip past leading whitespace | |
| while ((i < n) && isspace(text[i])) | |
| i++; | |
| // Find word end | |
| int start = i; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package cn.seeiner.file; | |
| import java.io.IOException; | |
| import java.net.URISyntaxException; | |
| import java.util.concurrent.Future; | |
| import java.util.concurrent.TimeUnit; | |
| import org.apache.hc.client5.http.ClientProtocolException; | |
| import org.apache.hc.client5.http.async.methods.SimpleHttpResponse; | |
| import org.apache.hc.client5.http.classic.methods.HttpGet; | |
| import org.apache.hc.client5.http.config.RequestConfig; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.watermelon.ognl; | |
| import java.math.BigDecimal; | |
| import java.util.ArrayList; | |
| import lombok.Data; | |
| import lombok.Getter; | |
| import lombok.Setter; | |
| import lombok.experimental.Accessors; | |
| import org.apache.ibatis.ognl.Ognl; | |
| import org.assertj.core.util.Lists; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package cn.seeiner.uim.tool; | |
| import java.nio.charset.StandardCharsets; | |
| import java.security.KeyPair; | |
| import java.security.KeyPairGenerator; | |
| import java.security.PrivateKey; | |
| import java.security.PublicKey; | |
| import java.util.Base64; | |
| import java.util.Objects; | |
| import java.util.Set; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package cn.seeiner.uim.tool; | |
| import java.nio.charset.StandardCharsets; | |
| import java.security.InvalidKeyException; | |
| import java.security.KeyPair; | |
| import java.security.KeyPairGenerator; | |
| import java.security.NoSuchAlgorithmException; | |
| import java.security.PrivateKey; | |
| import java.security.PublicKey; | |
| import java.util.Base64; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package cn.seeiner.uim.controller.internal; | |
| import cn.hutool.core.collection.CollectionUtil; | |
| import cn.seeiner.uim.api.entity.res.AccountResDto; | |
| import cn.seeiner.uim.api.entity.res.TemporaryAccountResDto; | |
| import cn.seeiner.uim.entity.Account; | |
| import cn.seeiner.uim.entity.AccountTemporary; | |
| import cn.seeiner.uim.entity.CarOwner3rdInformation; | |
| import cn.seeiner.uim.entity.request.AddCarOwnerAccountRequest; | |
| import cn.seeiner.uim.entity.request.AddCarOwnerTemporaryAccountRequest; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <resources> | |
| <resource> | |
| <directory>src/main/java</directory> | |
| <includes> | |
| <include>mapper/*.xml</include> | |
| </includes> | |
| </resource> | |
| <resource> | |
| <directory>src/main/resources</directory> | |
| <filtering>true</filtering> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Binary found at D:\Install\wechat\locales\WeChat Files\wxid_h2f60apr8joa22\FileStorage\File\2021-08\excel-demo\node_modules\node-sass\vendor\win32-x64-83\binding.node | |
| Testing binary | |
| Binary is fine | |
| npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.13 (node_modules\webpack-dev-server\node_modules\fsevents): | |
| npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.13: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"}) | |
| npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.13 (node_modules\watchpack-chokidar2\node_modules\fsevents): | |
| npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.13: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"}) | |
| npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@2.3.2 (node_modules\fsevents): | |
| npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@2.3.2: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"}) |