1 2 3 4 5 ··· 24 下一页
摘要: PowerBI 数字格式定义 阅读全文
posted @ 2025-06-27 17:33 CrossPython 阅读(2) 评论(0) 推荐(0)
摘要: 查指定数据库表的字段和描述 SELECT COLUMN_NAME AS '字段名', COLUMN_COMMENT AS '字段注释', COLUMN_TYPE AS '数据类型', IS_NULLABLE AS '是否可为空' FROM INFORMATION_SCHEMA.COLUMNS WHE 阅读全文
posted @ 2025-06-18 09:08 CrossPython 阅读(2) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/qq_45351273/article/details/147517391 https://blog.csdn.net/vvvae1234/article/details/141565822 阅读全文
posted @ 2025-06-15 20:03 CrossPython 阅读(21) 评论(0) 推荐(0)
摘要: _old\wuwuscan-server\src\test\java\cn\wuwu\scan\ProjectReactor.java 阅读全文
posted @ 2025-06-14 22:35 CrossPython 阅读(12) 评论(0) 推荐(0)
摘要: allprojects { repositories {// google()// mavenCentral() maven { url 'https://maven.aliyun.com/repository/google' } maven { url 'https://maven.aliyun. 阅读全文
posted @ 2025-06-14 11:16 CrossPython 阅读(6) 评论(0) 推荐(0)
摘要: 进入虚拟机podman machine ssh 这里可以该registray的国内镜像。 POWERSHELL 整体复制粘贴 podman run --name my-postgres ` -e POSTGRES_USER=postgres ` -e POSTGRES_PASSWORD=postgr 阅读全文
posted @ 2025-06-08 21:59 CrossPython 阅读(2) 评论(0) 推荐(0)
摘要: gradle下载慢, 解决办法: flutter run 执行下载. 会自动创建目录: C:\Users\<user>\.gradle\wrapper\dists\gradle-8.7-all\aan3ydargesu18aqyqjwhr3pc\ 看到有目录后停止执行. 去下面的地址手动下载这个文件 阅读全文
posted @ 2025-06-04 23:00 CrossPython 阅读(1) 评论(0) 推荐(0)
摘要: 欧度软件数据收集Intent API 可在 Honeywell Android 手机终端与平板电脑使用。它通过提供简单易用的系统消息 API 即可对扫码硬件模块的访问,而无需安装复杂的 Honeywell SDK 来深度集成。 OdooApp先发送一个Intent事件来启动扫描程序并配置扫码参数,再 阅读全文
posted @ 2025-06-04 21:47 CrossPython 阅读(6) 评论(0) 推荐(0)
摘要: <template> <div class="container"> <el-transfer ref="sortableRef" v-model="rightData" filterable :filter-method="filterMethod" filter-placeholder="请输入 阅读全文
posted @ 2025-05-18 08:26 CrossPython 阅读(12) 评论(0) 推荐(0)
摘要: <template> <div class="container"> <el-transfer ref="transferRef" v-model="dataValue" :titles="['可选字段', '已选字段']" :data="transferData" @left-check-chan 阅读全文
posted @ 2025-05-17 14:52 CrossPython 阅读(22) 评论(0) 推荐(0)
摘要: let // 获取当前年份和前一年 CurrentYear = Date.Year(DateTime.LocalNow()), PreviousYear = CurrentYear - 1, // 定义起始年份 StartYear = 2022, // 生成需要读取的年份列表 YearRange = 阅读全文
posted @ 2025-05-14 14:29 CrossPython 阅读(3) 评论(0) 推荐(0)
摘要: 关键字用途是否缓存是否需要手动指定依赖 computed 派生新值 ✅ 是 ❌ 否,自动追踪依赖 watch 监听变化并执行副作用 ❌ 否 ✅ 是 watchEffect 自动监听副作用函数内的依赖变化 ❌ 否 ❌ 否 ref / reactive 创建响应式数据 - - 生命周期钩子(如 onMo 阅读全文
posted @ 2025-05-10 09:46 CrossPython 阅读(3) 评论(0) 推荐(0)
摘要: from DrissionPage import ChromiumOptions, ChromiumPage import time class DownloadTellusPDF: def __init__(self, download_folder): self.download_folder 阅读全文
posted @ 2025-05-06 11:11 CrossPython 阅读(62) 评论(0) 推荐(0)
摘要: pandas, 比较2个dataframe, 其中basedf是基础表, 有所有的数据列, odoodf是数据表里面的列在basedf里都存在, 但是行数可能没有basedf多, 现在需要比较这2个df, 比较指定的几个列,这几个列必须在2个df里都存在. 基于一个主键列, 如果这2个df任何一列的 阅读全文
posted @ 2025-04-28 16:03 CrossPython 阅读(15) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2025-04-22 10:05 CrossPython 阅读(8) 评论(0) 推荐(0)
摘要: 1. 动态配置 & 系统工具模块 base(基础模块) ir.config_parameter(系统参数表)部分动态配置可能以JSON格式存储,例如第三方API的复杂配置。 ir.actions(动作配置)某些动作的上下文(context)或参数可能通过序列化字段存储。 web(前端模块) 用户自定 阅读全文
posted @ 2025-04-22 07:40 CrossPython 阅读(8) 评论(0) 推荐(0)
摘要: in manifest.py, append 'base_setup' into depends 阅读全文
posted @ 2025-04-19 19:08 CrossPython 阅读(2) 评论(0) 推荐(0)
摘要: https://python.langchain.com/docs/how_to/custom_chat_model/ https://www.langchain.com.cn/docs/how_to/custom_chat_model/ 阅读全文
posted @ 2025-04-18 22:36 CrossPython 阅读(5) 评论(0) 推荐(0)
摘要: https://www.youtube.com/watch?v=KxqlJblhzfI https://www.youtube.com/watch?v=p18O0hSmQyM https://www.youtube.com/watch?v=mq5oUXcAXL4 阅读全文
posted @ 2025-03-07 11:46 CrossPython 阅读(7) 评论(0) 推荐(0)
摘要: JPA中一些常用的查询操作: //And 等价于 SQL 中的 and 关键字,比如 findByHeightAndSex(int height,char sex); public List<User> findByHeightAndSex(int height,char sex); // Or 等 阅读全文
posted @ 2025-03-04 21:15 CrossPython 阅读(67) 评论(0) 推荐(0)
摘要: Pico 阅读全文
posted @ 2025-03-01 19:53 CrossPython 阅读(5) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/dreaming317/article/details/103823950 通用 General按 Press 功能 FunctionCtrl + Shift + P,F1 显示命令面板 Show Command PaletteCtrl + P 快速打开 阅读全文
posted @ 2025-03-01 10:30 CrossPython 阅读(77) 评论(0) 推荐(0)
摘要: select a.liuzhuan_ID from joinleader_app_run.hj_xiaoshoukaiju_lz8yi257 a left join (select * from (select bizkey, ROW_NUMBER() OVER (PARTITION BY bizk 阅读全文
posted @ 2025-02-28 11:53 CrossPython 阅读(2) 评论(0) 推荐(0)
摘要: sslargs = ssl_args = { "ssl_verify_cert": True,}master_conn = create_engine(r'mysql+pymysql://U_JL_PROD_RD:W123m@10.79.252.44:3306', connect_args=ssla 阅读全文
posted @ 2025-02-28 09:38 CrossPython 阅读(22) 评论(0) 推荐(0)
摘要: gamemakerASEPRITE 像素化软件SPRITE PILE 伪3DJSFXR 音效 阅读全文
posted @ 2025-02-24 20:04 CrossPython 阅读(13) 评论(0) 推荐(0)
摘要: def create_subdirectory(folder): task_name = str(int(time.time())) script_path = os.path.join(os.path.dirname(__file__), 'aa.py') # folder_alias = os. 阅读全文
posted @ 2025-02-21 11:04 CrossPython 阅读(5) 评论(0) 推荐(0)
摘要: import os import win32netcon import win32wnet from win32wnet import WNetAddConnection2, NETRESOURCE def get_parent_directory(path): parent_directory = 阅读全文
posted @ 2025-02-19 17:05 CrossPython 阅读(4) 评论(0) 推荐(0)
摘要: 1. 用 .bat: net use \ccnnsvs115fls01\APP01 /user:yourusername yourpassword /persistent:yes2. WIN+R: control.exe /name Microsoft.CredentialManager新增 阅读全文
posted @ 2025-02-18 11:23 CrossPython 阅读(9) 评论(0) 推荐(0)
摘要: powershell.exe: script.ps1: # 停止服务 Stop-Service -Name "odooserver" -Force -ErrorAction Stop # 启动服务 Start-Service -Name "odooserver" -ErrorAction Stop 阅读全文
posted @ 2025-02-17 15:26 CrossPython 阅读(1) 评论(0) 推荐(0)
摘要: 创建 PowerShell 脚本 创建一个 PowerShell 脚本来启动和停止服务。 启动服务的脚本(start_service.ps1): Start-Service -Name "jl-tellus" Write-Output "Service jl-tellus started at $( 阅读全文
posted @ 2025-02-17 14:15 CrossPython 阅读(14) 评论(0) 推荐(0)
摘要: sql server SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_CATALOG = 'hjdb'; mysql SELECT TABLE_NAME FROM i 阅读全文
posted @ 2025-02-15 18:02 CrossPython 阅读(3) 评论(0) 推荐(0)
摘要: @echo off :: 设置变量SET PGPATH=C:\Program Files\PostgreSQL\16\binSET BACKUPDIR=D:\odoo_daily_backup\dataSET DBNAME=1232SET PGUSER=123SET PGPASSWORD=123 f 阅读全文
posted @ 2025-02-15 12:08 CrossPython 阅读(4) 评论(0) 推荐(0)
摘要: 实测OK 设置win定时任务每天执行即可. @echo off :: 设置变量 SET PGPATH=C:\Program Files\PostgreSQL\16\bin SET BACKUPDIR=C:\test\ SET DBNAME=spring SET PGUSER=postgres SET 阅读全文
posted @ 2025-02-15 09:21 CrossPython 阅读(17) 评论(0) 推荐(0)
摘要: 开始 cargo loco start 获取routes cargo loco routes 增加一个 controller $ cargo loco generate controller guide --api added: "src/controllers/guide.rs" injected 阅读全文
posted @ 2025-02-05 22:01 CrossPython 阅读(7) 评论(0) 推荐(0)
摘要: 打开终端,编辑~/.bash_profile或~/.zshrc文件(取决于您使用的Shell)。 添加以下内容来配置Rustup的镜像源。这里以阿里云镜像为例: export RUSTUP_UPDATE_ROOT=https://mirrors.aliyun.com/rustup/rustup ex 阅读全文
posted @ 2025-02-05 16:58 CrossPython 阅读(203) 评论(0) 推荐(0)
摘要: https://pub.dev/packages/getx_scaffold https://github.com/Kxmrg/flutter_getx_scaffold 阅读全文
posted @ 2025-01-26 16:37 CrossPython 阅读(27) 评论(0) 推荐(0)
摘要: cer是公钥, 没有私钥 在windows下双击安装 然后mmc, 选择安装的, 导出pfx 这个时候需要设置密码 记住密码 阅读全文
posted @ 2024-11-04 13:16 CrossPython 阅读(224) 评论(0) 推荐(0)
摘要: 来自: https://www.odoo123.com/ 共修改5处:1、将\odoo17-e-企业版\odoo_updated_modules17\mail\models\update.py第108行到114行注释失效,添加一行pass,其余不变:完整如下: # set_param = self. 阅读全文
posted @ 2024-10-16 13:42 CrossPython 阅读(1859) 评论(1) 推荐(0)
摘要: https://blog.csdn.net/m0_37383484/article/details/137973086 阅读全文
posted @ 2024-08-18 10:26 CrossPython 阅读(11) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/qq_52964132/article/details/138494138 阅读全文
posted @ 2024-08-17 08:26 CrossPython 阅读(50) 评论(0) 推荐(0)
1 2 3 4 5 ··· 24 下一页