analog Implementation of an ATM + shopping mall program
Job Requirements:
- Quota 15000 or Custom
- Realize shopping mall, buy things to add shopping cart, call credit card interface Checkout
- Can withdraw, handling fee 5%
- 22nd monthly Billing, 10th monthly repayment date, overdue, according to the total amount owed 5 daily interest
- Multi-Account Login support
- Support transfer between accounts
- Record monthly daily consumption flow
- Provide repayment interface
- ATM Record Operation Log
- Provide management interface, including adding account, user quota, freezing account, etc...
- Decorator for user authentication
## ATM Credit card shopping simulation program## # Author Introduction:*Author: Highland## # Feature Description:Analog implementation of an ATM +Shopping Mall Program Quota 15000 or custom implement shopping mall, buy things to add shopping cart, call Card interface checkout can withdraw cash, handling fee 5%support multi-account login support account transfer record monthly daily consumption flow provides payment interface ATM logging operation log provides management interface, including adding accounts, user quotas, freezing accounts, etc... Decorator directory structure for user authentication: ATM job ├──README├──ATM#ATM Master Directory│├──bin#ATM Execution File directory││├──__init__. py││├──atm_start.py#ATM Main program Execution program│││├──conf#configuration file││├──__init__. py││└──settings.py#not used│├──core#The main program logic is in this directory.││├──__init__. py││├──auth.py#user, credit card, Administrator authentication module││├──log.py#Log Recording Module││├──creditcard.py#credit card module \ Transfer \ repayment \ withdrawal, etc.││├──shopping.py#shopping module \ Mall \ Shopping cart \ Shopping Checkout, etc.││├──main.py#Main logical Interaction program││└──user.py#user module \ create \ lock \ Unlock, etc.│├──db#Database││├──__init__. Py││├──blacklist#User blacklist file││└──user_data#user files, user's various information││└──creditcard#credit card files, credit cards, various information││└──shopping_car#Shopping Cart File││└──shopping_list#Product List File│└──log#Log Directory│├──__init__. Py└──└──water_record#all users, the credit card transaction log
Program Introduction
Python Basic job------simulation implementation of an ATM + shopping mall Program