addproject
This commit is contained in:
0
zhyy/library/ZZYYLogic/__init__.py
Normal file
0
zhyy/library/ZZYYLogic/__init__.py
Normal file
BIN
zhyy/library/ZZYYLogic/__pycache__/__init__.cpython-38.pyc
Normal file
BIN
zhyy/library/ZZYYLogic/__pycache__/__init__.cpython-38.pyc
Normal file
Binary file not shown.
37
zhyy/library/ZZYYLogic/purchase_logic.py
Normal file
37
zhyy/library/ZZYYLogic/purchase_logic.py
Normal 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
|
||||
Reference in New Issue
Block a user