Commit d13768aa75d660e55eab4266f5ad6531312e642c

Authored by wenleiming
1 parent f1f7cf82

添加备注

commons/api/fc_add.py
... ... @@ -6,6 +6,11 @@
6 6 @IDE :PyCharm
7 7 """
8 8 # -*- coding: utf-8 -*-
  9 +
  10 +"""
  11 +返还人管理——新增返还人
  12 +"""
  13 +
9 14 from commons import common as com
10 15 from commons.MySession import my
11 16  
... ...
commons/api/fc_edit.py
... ... @@ -5,6 +5,9 @@
5 5 @File :test_fc_edit.py
6 6 @IDE :PyCharm
7 7 """
  8 +"""
  9 +返还人管理——修改返还人
  10 +"""
8 11 from commons import common as com
9 12 from commons.MySession import my
10 13  
... ...
commons/api/fc_view.py
... ... @@ -6,6 +6,9 @@
6 6 @IDE :PyCharm
7 7 """
8 8 # -*- coding: utf-8 -*-
  9 +"""
  10 +返还人管理——查看返还人
  11 +"""
9 12 from commons import common as com
10 13 from commons.MySession import my
11 14  
... ...
commons/api/feedbackAccounrecordController_list.py
... ... @@ -5,6 +5,9 @@
5 5 @File :test_feedbackAccounrecordController_list.py
6 6 @IDE :PyCharm
7 7 """
  8 +"""
  9 +交易明细——交易流水号和时间查询
  10 +"""
8 11 from commons import common as com
9 12 from commons.MySession import my,sy1
10 13  
... ...
commons/api/feedbackOrderController_querySumAmount.py
... ... @@ -5,6 +5,9 @@
5 5 @File :feedbackOrderController_querySumAmount.py
6 6 @IDE :PyCharm
7 7 """
  8 +"""
  9 +已结账明细——返还人和结账时间查询
  10 +"""
8 11 from commons import common as com
9 12 from commons.MySession import my,sy1
10 13  
... ...
commons/api/feedbackOrderController_settlementlist.py
... ... @@ -6,6 +6,9 @@
6 6 @IDE :PyCharm
7 7 """
8 8 # -*- coding: utf-8 -*-
  9 +"""
  10 +已结账明细——已结账笔数和已结账金额查询
  11 +"""
9 12 from commons import common as com
10 13 from commons.MySession import sy1
11 14  
... ...
commons/api/feedback_customer_disable.py
... ... @@ -5,6 +5,9 @@
5 5 @File :test_feedback_customer_disable.py
6 6 @IDE :PyCharm
7 7 """
  8 +"""
  9 +返还人管理——禁用返还人
  10 +"""
8 11 from commons import common as com
9 12 from commons.MySession import my
10 13  
... ...
commons/api/feedback_customer_enable.py
... ... @@ -5,6 +5,9 @@
5 5 @File :test_feedback_customer_enable.py
6 6 @IDE :PyCharm
7 7 """
  8 +"""
  9 +返还人管理——启用返还人
  10 +"""
8 11 from commons import common as com
9 12  
10 13 class feedback_customer_enable():
... ...
commons/api/feedback_customer_query.py
... ... @@ -5,7 +5,9 @@
5 5 @File :test_feedback_customer_query.py
6 6 @IDE :PyCharm
7 7 """
8   -
  8 +"""
  9 +返还人管理——返还人列表查询
  10 +"""
9 11 from commons import common as com
10 12 from commons.MySession import my,sy1
11 13  
... ...
commons/api/feedback_order_settlement.py
... ... @@ -8,7 +8,9 @@
8 8 from commons import common as com
9 9 from commons.MySession import my,sy1
10 10 import requests
11   -
  11 +"""
  12 +结账管理——结账
  13 +"""
12 14 class feedback_order_settlement():
13 15 url = "http://test.jmsf.diligrp.com:8385/FeedbackOrderController/doSettleAccount.action"
14 16 header = {
... ...
commons/api/feedback_order_settlement_query.py
... ... @@ -5,6 +5,9 @@
5 5 @File :test_feedback_order_settlement_query.py
6 6 @IDE :PyCharm
7 7 """
  8 +"""
  9 +结账管理——列表查询
  10 +"""
8 11 from commons import common as com
9 12 from commons.MySession import my,sy1
10 13  
... ...