摘要: 代码: <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="utf-8"/> <meta http-equiv="X-UA-Compatible" content="IE=edge"/> 阅读全文
posted @ 2025-07-12 17:07 liskov_design 阅读(2) 评论(0) 推荐(0)
摘要: 需求: 数据自动上传程序解析原理:自动搜索文件夹下面的子文件夹和对应的文件.匹配:交易报告,移除订单,仓储费,库存分类账,入库配置服务费用,广告活动xlsx或者csv文件.自动匹配规则(店铺后台导出的表格文件无需任何手动加工或者处理,程序自动识别数据开始的位置并且进行读取)获取xlsx和csv的数据 阅读全文
posted @ 2025-07-10 16:14 liskov_design 阅读(1) 评论(0) 推荐(0)
摘要: npoi导出大批量数据性能优化 优化后的代码: 确保每次下载的执行线程只有1个 private static ConcurrentDictionary<string, string> concurrent_dictionary_download_thread = new ConcurrentDict 阅读全文
posted @ 2025-07-10 16:02 liskov_design 阅读(1) 评论(0) 推荐(0)
摘要: 数据模型: 数据模型设计: 系统应用web: 代码: <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="utf-8"/> <meta http-equiv="X-UA-Compatibl 阅读全文
posted @ 2025-06-27 10:36 liskov_design 阅读(2) 评论(0) 推荐(0)
摘要: 数据模型: 数据模型设计: 系统应用前端: 代码配置: <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="utf-8"/> <meta http-equiv="X-UA-Compatib 阅读全文
posted @ 2025-06-27 10:30 liskov_design 阅读(2) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2025-06-25 11:22 liskov_design 阅读(0) 评论(0) 推荐(0)
摘要: def get_json_from_xls(xls_path): df = pd.read_excel(xls_path) arr = df.to_json(orient='records') return arr def get_json_from_csv(xls_path, index_head 阅读全文
posted @ 2025-06-24 15:53 liskov_design 阅读(4) 评论(0) 推荐(0)
摘要: import requests from datetime import datetime, timedelta # 配置参数 ACCESS_TOKEN = "your_access_token" # 已获取的access_token MARKETPLACE_ID = "ATVPDKIKX0DER" 阅读全文
posted @ 2025-06-03 15:58 liskov_design 阅读(11) 评论(0) 推荐(0)
摘要: import warnings import requests client_id = 'your_client_id' client_secret = 'your_client_secret' code = 'your_spapi_oauth_code' redirect_uri = 'your_ 阅读全文
posted @ 2025-06-03 15:57 liskov_design 阅读(11) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.Data; using System.IO; using System.Text; using System.Web.UI; using NLog; namespace URL 阅读全文
posted @ 2025-06-03 15:56 liskov_design 阅读(3) 评论(0) 推荐(0)
摘要: - (BOOL)canDisplayInSingleLine:(UILabel *)label { if (!label.text || label.text.length == 0) return YES; CGSize constraint = CGSizeMake(CGFLOAT_MAX, l 阅读全文
posted @ 2025-05-27 11:46 liskov_design 阅读(1) 评论(0) 推荐(0)
摘要: nothing 阅读全文
posted @ 2025-05-17 18:18 liskov_design 阅读(8) 评论(0) 推荐(0)
摘要: { "reason": "success!", "result": [ { "city": "北京", "92h": "7.1", "95h": "7.56", "98h": "9.06", "0h": "6.78" }, { "city": "天津", "92h": " 阅读全文
posted @ 2025-05-16 18:21 liskov_design 阅读(2) 评论(0) 推荐(0)
摘要: DateTime.Now.to_string_x_ymd_hh_mm_ss_fff() ToString("yyyy-MM-dd HH:mm:ss.fff"); done 阅读全文
posted @ 2025-05-16 18:17 liskov_design 阅读(5) 评论(0) 推荐(0)
摘要: { "code": "OK", "message": "", "data": { "page": 1, "size": 50, "total": 12977, "items": [{ "market": "GLOBAL", "marketId": 1, "website": "https://www 阅读全文
posted @ 2025-05-15 14:00 liskov_design 阅读(12) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2025-05-14 18:09 liskov_design 阅读(0) 评论(0) 推荐(0)
摘要: const randomNum = Math.floor(Math.random() * 90) + 10; console.log(randomNum); // 输出结果例如 42、73 等 done 阅读全文
posted @ 2025-05-13 11:05 liskov_design 阅读(17) 评论(0) 推荐(0)
摘要: def get_uuid(): s = str(uuid.uuid4()) s = s.replace("-", "") return s done 阅读全文
posted @ 2025-05-12 16:43 liskov_design 阅读(3) 评论(0) 推荐(0)
摘要: <div style="text-align: center"> ICP备案:<a href="http://beian.miit.gov.cn/">xxx</a> <a href="https://beian.mps.gov.cn/#/query/webSearch?code=xxx" rel=" 阅读全文
posted @ 2025-05-12 14:22 liskov_design 阅读(5) 评论(0) 推荐(0)
摘要: public static Dictionary<string, string> Parse(string formData) { formData = formData.Replace("&", "&"); var dict = new Dictionary<string, string>(Str 阅读全文
posted @ 2025-04-30 17:40 liskov_design 阅读(9) 评论(0) 推荐(0)