初始化工程

This commit is contained in:
何 泽隆
2024-11-03 16:58:00 +08:00
commit 239fd2ca11
9 changed files with 1555 additions and 0 deletions

21
source/CBB/Param.py Normal file
View File

@@ -0,0 +1,21 @@
# -*- coding: utf-8 -*-
'''
参数管理模块代码生成
此脚本提供参数管理模块代码生成相关类与功能函数。
'''
import numpy as np
from pandas import DataFrame
def code_cbb_param(sheet: DataFrame) -> str|None:
""" 参数页代码生成 """
pass
def code_cbb_params(sheets: dict[str, DataFrame]) -> str|None:
""" 完整参数模块配置代码生成 """
pass