addproject

This commit is contained in:
qiaoxinjiu
2026-01-22 19:10:37 +08:00
commit 6994b185a3
184 changed files with 21039 additions and 0 deletions

View File

View File

@@ -0,0 +1,37 @@
# -*- coding:utf-8 -*-
"""
Author: qiaoxinjiu
Email: qiaoxinjiu@qq.com
Create Date: 2026/01/17 5:58 下午
"""
from base_framework.public_tools.mg_keyword import ManageKeyWord
from base_framework.public_tools import utils
from zhyy.library.BusinessKw.SZPurchase.index import PurchaseIndex
obj_get_way = utils.Tools()
obj_purchase_kw = PurchaseIndex()
obj_manage_kw = ManageKeyWord()
class PurchaseLogic():
def __init__(self):
pass
def logic_zhyy_sz_purchase_todo_task(self, post_data_input, phone=None):
"""
| 功能说明: | 深圳采购待办任务处理 |
| 请求参数名 | 说明 | 类型 | 条件 | 是否必填 | |
| userName | 登录名 | string |None | 0 |
作者信息: | 谯新久 | 2026/01/17 |
"""
try:
post_data_input = eval(post_data_input)
except:
post_data_input = post_data_input
return
if __name__ == '__main__':
pass