| | |
| | | __add_log(TYPE_ACTION, code, {"type": "加白", "msg": msg}) |
| | | |
| | | |
| | | # 加想 |
| | | def add_want_buy(code, msg=""): |
| | | __add_log(TYPE_ACTION, code, {"type": "加想", "msg": msg}) |
| | | |
| | | |
| | | # 移想 |
| | | def remove_want_buy(code, msg=""): |
| | | __add_log(TYPE_ACTION, code, {"type": "移想", "msg": msg}) |
| | | |
| | | |
| | | # 加临时辨识度票 |
| | | def add_temp_special_codes(code, msg=""): |
| | | __add_log(TYPE_ACTION, code, {"type": "新题材", "msg": msg}) |
| | | |
| | | |
| | | # 加下单耗时 |
| | | def add_place_order_use_time(code, msg): |
| | | __add_log(TYPE_ACTION, code, {"type": "下单耗时", "msg": msg}) |
| | | |
| | | |
| | | # 加白 |
| | | def add_common_msg(code, type_, msg=""): |
| | | __add_log(TYPE_ACTION, code, {"type": type_, "msg": msg}) |
| | | |
| | | |
| | | if __name__ == "__main__": |
| | | pass |