├── .gitignore ├── .idea ├── .name ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml ├── test_ccimp.iml ├── vcs.xml └── workspace.xml ├── CCIMP ├── CCIMP │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-34.pyc │ │ ├── __init__.cpython-35.pyc │ │ ├── settings.cpython-34.pyc │ │ ├── settings.cpython-35.pyc │ │ ├── urls.cpython-34.pyc │ │ ├── urls.cpython-35.pyc │ │ ├── wsgi.cpython-34.pyc │ │ └── wsgi.cpython-35.pyc │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── ccimp_links_app │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── ccimp_permission_app │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-34.pyc │ │ ├── __init__.cpython-35.pyc │ │ ├── admin.cpython-34.pyc │ │ ├── admin.cpython-35.pyc │ │ ├── urls.cpython-34.pyc │ │ ├── urls.cpython-35.pyc │ │ ├── views.cpython-34.pyc │ │ └── views.cpython-35.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20190725_1742.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-34.pyc │ │ │ ├── 0001_initial.cpython-35.pyc │ │ │ ├── 0002_auto_20190725_1742.cpython-34.pyc │ │ │ ├── 0002_auto_20190725_1742.cpython-35.pyc │ │ │ ├── 0004_auto_20190703_1823.cpython-35.pyc │ │ │ ├── 0005_auto_20190703_1828.cpython-35.pyc │ │ │ ├── __init__.cpython-34.pyc │ │ │ └── __init__.cpython-35.pyc │ ├── models │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── __init__.cpython-35.pyc │ │ │ ├── permissionClassModels.cpython-34.pyc │ │ │ └── permissionClassModels.cpython-35.pyc │ │ └── permissionClassModels.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── ccimp_project_app │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-34.pyc │ │ ├── __init__.cpython-35.pyc │ │ ├── admin.cpython-34.pyc │ │ ├── admin.cpython-35.pyc │ │ ├── urls.cpython-34.pyc │ │ ├── urls.cpython-35.pyc │ │ ├── views.cpython-34.pyc │ │ └── views.cpython-35.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-34.pyc │ │ │ ├── 0001_initial.cpython-35.pyc │ │ │ ├── __init__.cpython-34.pyc │ │ │ └── __init__.cpython-35.pyc │ ├── models │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── __init__.cpython-35.pyc │ │ │ ├── projectModels.cpython-34.pyc │ │ │ └── projectModels.cpython-35.pyc │ │ └── projectModels.py │ ├── templates │ │ ├── project_add.html │ │ ├── project_edit.html │ │ └── project_list.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── ccimp_systemSettings_app │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── models │ │ ├── WebConfigModels.py │ │ └── __init__.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── ccimp_tool_app │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-34.pyc │ │ ├── __init__.cpython-35.pyc │ │ ├── admin.cpython-34.pyc │ │ ├── admin.cpython-35.pyc │ │ ├── models.cpython-34.pyc │ │ ├── models.cpython-35.pyc │ │ ├── urls.cpython-34.pyc │ │ ├── urls.cpython-35.pyc │ │ ├── views.cpython-34.pyc │ │ └── views.cpython-35.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ └── __init__.cpython-35.pyc │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── ccimp_user_app │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-34.pyc │ │ ├── __init__.cpython-35.pyc │ │ ├── admin.cpython-34.pyc │ │ ├── admin.cpython-35.pyc │ │ ├── forms.cpython-34.pyc │ │ ├── forms.cpython-35.pyc │ │ ├── views.cpython-34.pyc │ │ └── views.cpython-35.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-34.pyc │ │ │ ├── 0001_initial.cpython-35.pyc │ │ │ ├── __init__.cpython-34.pyc │ │ │ └── __init__.cpython-35.pyc │ ├── models │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-34.pyc │ │ │ ├── __init__.cpython-35.pyc │ │ │ ├── userModels.cpython-34.pyc │ │ │ └── userModels.cpython-35.pyc │ │ └── userModels.py │ ├── tests.py │ └── views.py ├── db.sqlite3 ├── db_config │ ├── __pycache__ │ │ ├── talkQueryUserInfo.cpython-34.pyc │ │ ├── talkQueryUserOrder.cpython-34.pyc │ │ ├── talkQueryUserOrder.cpython-35.pyc │ │ └── talkQueryUserWealth.cpython-34.pyc │ ├── dbConfig.py │ ├── kidsQueryUserKidsExt.py │ ├── talkInsertAppointInfo.py │ ├── talkQueryAppointInfo.py │ ├── talkQueryJuniorTextBookInfo.py │ ├── talkQueryOpenClassInfo.py │ ├── talkQueryTeacherInfo.py │ ├── talkQueryUserInfo.py │ ├── talkQueryUserOrder.py │ └── talkQueryUserWealth.py ├── externalClass │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-34.pyc │ │ ├── __init__.cpython-35.pyc │ │ ├── adminLogin.cpython-34.pyc │ │ ├── adminLogin.cpython-35.pyc │ │ ├── getCheckCartInfo.cpython-34.pyc │ │ ├── getOrderInfo.cpython-34.pyc │ │ ├── getOrderInfo.cpython-35.pyc │ │ ├── getPackageDetail.cpython-34.pyc │ │ ├── getPackageDetail.cpython-35.pyc │ │ ├── processOrder.cpython-34.pyc │ │ ├── processOrder.cpython-35.pyc │ │ ├── publicKeyRsa.cpython-34.pyc │ │ ├── publicKeyRsa.cpython-35.pyc │ │ ├── userLogin.cpython-34.pyc │ │ └── userLogin.cpython-35.pyc │ ├── accountStatus.py │ ├── addIVIAppoint.py │ ├── adminLogin.py │ ├── appoint │ │ ├── __init__.py │ │ ├── appointConfig.py │ │ ├── getTalkAppointId.py │ │ ├── getTalkAppointInfo.py │ │ ├── getTalkPlatformAppointData.py │ │ ├── getTalkPlatformAppointId.py │ │ ├── getTalkPlatformAppointReconstructionAppointInfo.py │ │ └── setTalkAppointInsertData.py │ ├── appointStatus.py │ ├── courseStatus.py │ ├── courseStatusTalkPlatform.py │ ├── getCheckCartInfo.py │ ├── getEndTimeData.py │ ├── getJuniorTextBookInfo.py │ ├── getOrderInfo.py │ ├── getPackageDetail.py │ ├── getRegisterInfo.py │ ├── getSessionUser.py │ ├── getStartTimeData.py │ ├── getTeacherOpenTimeInfo.py │ ├── getUserLeveInfo.py │ ├── getUserRole.py │ ├── md.py │ ├── mobileNumberFormatValidity.py │ ├── mobileStatus.py │ ├── newWapUserLogin.py │ ├── nickName.py │ ├── open_class │ │ ├── __init__.py │ │ ├── getOpenClassInfo.py │ │ ├── getTeacherInfo.py │ │ ├── getTextBookInfo.py │ │ └── openClassConfig.py │ ├── orderOnConfig.py │ ├── postRegisterinfo.py │ ├── postrUserOccupInfo.py │ ├── processOrder.py │ ├── publicKeyRsa.py │ ├── public_configure │ │ ├── __pycache__ │ │ │ └── global_configure.cpython-34.pyc │ │ └── global_configure.py │ ├── public_key │ │ └── key.txt │ ├── smsLoginSmsCode.py │ ├── smsLoginSmsContent.py │ ├── ssoH5.py │ ├── ssoIdentity.py │ ├── ssoIdentityPhpSessidConfig.py │ ├── userIdentity.py │ ├── userLogin.py │ ├── userRegister.py │ └── wapUerLogin.py ├── manage.py ├── my.cnf ├── static │ ├── css │ │ ├── bootstrap-datetimepicker │ │ │ └── 4.17.47 │ │ │ │ └── bootstrap-datetimepicker.min.css │ │ ├── bootstrap │ │ │ ├── 3.3.7 │ │ │ │ └── bootstrap.min.css │ │ │ └── fonts │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── dashboard.css │ │ ├── loading.css │ │ ├── menu.css │ │ ├── public_top.css │ │ ├── select2 │ │ │ └── 4.0.7 │ │ │ │ └── select2.min.css │ │ └── user_login_register_css │ │ │ ├── commons.css │ │ │ └── login.css │ ├── image │ │ ├── loading.gif │ │ ├── logo_header.png │ │ ├── user_login_register_image │ │ │ ├── background.png │ │ │ ├── foreground.png │ │ │ └── midground.png │ │ └── xiala.png │ └── js │ │ ├── appointRecord │ │ ├── appointRecordEdit.js │ │ ├── appointRecordInfo.js │ │ ├── appointRecordStartEndTime.js │ │ ├── saveAppointRecord.js │ │ ├── textJuniorBookInfo.js │ │ └── userUidInfo.js │ │ ├── bootstrap-datetimepicker │ │ ├── 4.17.47 │ │ │ └── bootstrap-datetimepicker.min.js │ │ └── moment │ │ │ └── 2.22.0 │ │ │ └── moment-with-locales.js │ │ ├── bootstrap.min.js │ │ ├── bootstrap │ │ └── 3.3.7 │ │ │ └── bootstrap.min.js │ │ ├── jquery-1.12.0.js │ │ ├── jquery │ │ └── 2.1.1 │ │ │ └── jquery.min.js │ │ ├── menu.js │ │ ├── openClassJs │ │ ├── saveOpenClass.js │ │ ├── teacherInfo.js │ │ └── textBookInfo.js │ │ ├── saleOrderJs │ │ ├── UserPackageDetail.js │ │ ├── processOnOrder.js │ │ ├── processOrder.js │ │ ├── saleOrder.js │ │ └── userOnOrderDetail.js │ │ ├── select2 │ │ └── 4.0.7 │ │ │ └── select2.min.js │ │ └── userIforJs │ │ ├── accountStatus.js │ │ ├── courseStatus.js │ │ ├── mobileStatus.js │ │ ├── ssoH5.js │ │ ├── ssoIdentity.js │ │ ├── userIdentity.js │ │ ├── userInfoDetail.js │ │ ├── userNickName.js │ │ ├── userRegister.js │ │ └── userSmsContent.js └── templates │ ├── 404.html │ ├── backup_Page │ ├── permission_backup.html │ ├── permission_class_backup.html │ ├── project_list_backup.html │ └── tool_sale_order_backup.html │ ├── base.html │ ├── common │ ├── common_left.html │ └── common_top.html │ ├── junior_appoint_add.html │ ├── links.html │ ├── loading.html │ ├── login_ccimp.html │ ├── open_class.html │ ├── open_class_add.html │ ├── permission.html │ ├── permission_class.html │ ├── permission_class_add.html │ ├── permission_class_edit.html │ ├── permission_edit.html │ ├── project_add.html │ ├── project_edit.html │ ├── project_list.html │ ├── register_ccimp.html │ ├── systemConfig.html │ ├── systemConfig_add.html │ ├── systemConfig_edit.html │ ├── tool_adduserpoint.html │ ├── tool_appoint_manage.html │ ├── tool_sale_order.html │ └── tool_user_info.html └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | test_ccimp -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/test_ccimp.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/.idea/test_ccimp.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /CCIMP/CCIMP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCIMP/CCIMP/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/CCIMP/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/CCIMP/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/CCIMP/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/CCIMP/__pycache__/settings.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/CCIMP/__pycache__/settings.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/CCIMP/__pycache__/settings.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/CCIMP/__pycache__/settings.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/CCIMP/__pycache__/urls.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/CCIMP/__pycache__/urls.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/CCIMP/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/CCIMP/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/CCIMP/__pycache__/wsgi.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/CCIMP/__pycache__/wsgi.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/CCIMP/__pycache__/wsgi.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/CCIMP/__pycache__/wsgi.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/CCIMP/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/CCIMP/settings.py -------------------------------------------------------------------------------- /CCIMP/CCIMP/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/CCIMP/urls.py -------------------------------------------------------------------------------- /CCIMP/CCIMP/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/CCIMP/wsgi.py -------------------------------------------------------------------------------- /CCIMP/ccimp_links_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCIMP/ccimp_links_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_links_app/admin.py -------------------------------------------------------------------------------- /CCIMP/ccimp_links_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_links_app/apps.py -------------------------------------------------------------------------------- /CCIMP/ccimp_links_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCIMP/ccimp_links_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_links_app/models.py -------------------------------------------------------------------------------- /CCIMP/ccimp_links_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_links_app/tests.py -------------------------------------------------------------------------------- /CCIMP/ccimp_links_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_links_app/urls.py -------------------------------------------------------------------------------- /CCIMP/ccimp_links_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_links_app/views.py -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/__pycache__/admin.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/__pycache__/admin.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/__pycache__/urls.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/__pycache__/urls.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/__pycache__/views.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/__pycache__/views.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/__pycache__/views.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/__pycache__/views.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/admin.py -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/apps.py -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/migrations/0002_auto_20190725_1742.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/migrations/0002_auto_20190725_1742.py -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/migrations/__pycache__/0001_initial.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/migrations/__pycache__/0001_initial.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/migrations/__pycache__/0001_initial.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/migrations/__pycache__/0001_initial.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/migrations/__pycache__/0002_auto_20190725_1742.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/migrations/__pycache__/0002_auto_20190725_1742.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/migrations/__pycache__/0002_auto_20190725_1742.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/migrations/__pycache__/0002_auto_20190725_1742.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/migrations/__pycache__/0004_auto_20190703_1823.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/migrations/__pycache__/0004_auto_20190703_1823.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/migrations/__pycache__/0005_auto_20190703_1828.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/migrations/__pycache__/0005_auto_20190703_1828.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/migrations/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/migrations/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/migrations/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/migrations/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/models/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'zhangbo' 2 | -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/models/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/models/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/models/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/models/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/models/__pycache__/permissionClassModels.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/models/__pycache__/permissionClassModels.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/models/__pycache__/permissionClassModels.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/models/__pycache__/permissionClassModels.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/models/permissionClassModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/models/permissionClassModels.py -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/tests.py -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/urls.py -------------------------------------------------------------------------------- /CCIMP/ccimp_permission_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_permission_app/views.py -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/__pycache__/admin.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/__pycache__/admin.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/__pycache__/urls.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/__pycache__/urls.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/__pycache__/views.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/__pycache__/views.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/__pycache__/views.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/__pycache__/views.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/admin.py -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/apps.py -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/migrations/__pycache__/0001_initial.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/migrations/__pycache__/0001_initial.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/migrations/__pycache__/0001_initial.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/migrations/__pycache__/0001_initial.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/migrations/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/migrations/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/migrations/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/migrations/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/models/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'zhangbo' 2 | -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/models/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/models/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/models/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/models/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/models/__pycache__/projectModels.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/models/__pycache__/projectModels.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/models/__pycache__/projectModels.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/models/__pycache__/projectModels.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/models/projectModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/models/projectModels.py -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/templates/project_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/templates/project_add.html -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/templates/project_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/templates/project_edit.html -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/templates/project_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/templates/project_list.html -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/tests.py -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/urls.py -------------------------------------------------------------------------------- /CCIMP/ccimp_project_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_project_app/views.py -------------------------------------------------------------------------------- /CCIMP/ccimp_systemSettings_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCIMP/ccimp_systemSettings_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_systemSettings_app/admin.py -------------------------------------------------------------------------------- /CCIMP/ccimp_systemSettings_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_systemSettings_app/apps.py -------------------------------------------------------------------------------- /CCIMP/ccimp_systemSettings_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_systemSettings_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /CCIMP/ccimp_systemSettings_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCIMP/ccimp_systemSettings_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_systemSettings_app/models.py -------------------------------------------------------------------------------- /CCIMP/ccimp_systemSettings_app/models/WebConfigModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_systemSettings_app/models/WebConfigModels.py -------------------------------------------------------------------------------- /CCIMP/ccimp_systemSettings_app/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCIMP/ccimp_systemSettings_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_systemSettings_app/tests.py -------------------------------------------------------------------------------- /CCIMP/ccimp_systemSettings_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_systemSettings_app/urls.py -------------------------------------------------------------------------------- /CCIMP/ccimp_systemSettings_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_systemSettings_app/views.py -------------------------------------------------------------------------------- /CCIMP/ccimp_tool_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCIMP/ccimp_tool_app/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_tool_app/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_tool_app/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_tool_app/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_tool_app/__pycache__/admin.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_tool_app/__pycache__/admin.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_tool_app/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_tool_app/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_tool_app/__pycache__/models.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_tool_app/__pycache__/models.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_tool_app/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_tool_app/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_tool_app/__pycache__/urls.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_tool_app/__pycache__/urls.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_tool_app/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_tool_app/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_tool_app/__pycache__/views.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_tool_app/__pycache__/views.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_tool_app/__pycache__/views.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_tool_app/__pycache__/views.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_tool_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_tool_app/admin.py -------------------------------------------------------------------------------- /CCIMP/ccimp_tool_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_tool_app/apps.py -------------------------------------------------------------------------------- /CCIMP/ccimp_tool_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCIMP/ccimp_tool_app/migrations/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_tool_app/migrations/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_tool_app/migrations/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_tool_app/migrations/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_tool_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_tool_app/models.py -------------------------------------------------------------------------------- /CCIMP/ccimp_tool_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_tool_app/tests.py -------------------------------------------------------------------------------- /CCIMP/ccimp_tool_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_tool_app/urls.py -------------------------------------------------------------------------------- /CCIMP/ccimp_tool_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_tool_app/views.py -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_user_app/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_user_app/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/__pycache__/admin.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_user_app/__pycache__/admin.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_user_app/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/__pycache__/forms.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_user_app/__pycache__/forms.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/__pycache__/forms.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_user_app/__pycache__/forms.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/__pycache__/views.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_user_app/__pycache__/views.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/__pycache__/views.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_user_app/__pycache__/views.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_user_app/admin.py -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_user_app/apps.py -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_user_app/forms.py -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_user_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/migrations/__pycache__/0001_initial.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_user_app/migrations/__pycache__/0001_initial.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/migrations/__pycache__/0001_initial.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_user_app/migrations/__pycache__/0001_initial.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/migrations/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_user_app/migrations/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/migrations/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_user_app/migrations/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/models/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_user_app/models/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/models/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_user_app/models/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/models/__pycache__/userModels.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_user_app/models/__pycache__/userModels.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/models/__pycache__/userModels.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_user_app/models/__pycache__/userModels.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/models/userModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_user_app/models/userModels.py -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_user_app/tests.py -------------------------------------------------------------------------------- /CCIMP/ccimp_user_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/ccimp_user_app/views.py -------------------------------------------------------------------------------- /CCIMP/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/db.sqlite3 -------------------------------------------------------------------------------- /CCIMP/db_config/__pycache__/talkQueryUserInfo.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/db_config/__pycache__/talkQueryUserInfo.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/db_config/__pycache__/talkQueryUserOrder.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/db_config/__pycache__/talkQueryUserOrder.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/db_config/__pycache__/talkQueryUserOrder.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/db_config/__pycache__/talkQueryUserOrder.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/db_config/__pycache__/talkQueryUserWealth.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/db_config/__pycache__/talkQueryUserWealth.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/db_config/dbConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/db_config/dbConfig.py -------------------------------------------------------------------------------- /CCIMP/db_config/kidsQueryUserKidsExt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/db_config/kidsQueryUserKidsExt.py -------------------------------------------------------------------------------- /CCIMP/db_config/talkInsertAppointInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/db_config/talkInsertAppointInfo.py -------------------------------------------------------------------------------- /CCIMP/db_config/talkQueryAppointInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/db_config/talkQueryAppointInfo.py -------------------------------------------------------------------------------- /CCIMP/db_config/talkQueryJuniorTextBookInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/db_config/talkQueryJuniorTextBookInfo.py -------------------------------------------------------------------------------- /CCIMP/db_config/talkQueryOpenClassInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/db_config/talkQueryOpenClassInfo.py -------------------------------------------------------------------------------- /CCIMP/db_config/talkQueryTeacherInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/db_config/talkQueryTeacherInfo.py -------------------------------------------------------------------------------- /CCIMP/db_config/talkQueryUserInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/db_config/talkQueryUserInfo.py -------------------------------------------------------------------------------- /CCIMP/db_config/talkQueryUserOrder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/db_config/talkQueryUserOrder.py -------------------------------------------------------------------------------- /CCIMP/db_config/talkQueryUserWealth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/db_config/talkQueryUserWealth.py -------------------------------------------------------------------------------- /CCIMP/externalClass/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'zhangbo' 2 | -------------------------------------------------------------------------------- /CCIMP/externalClass/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/externalClass/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/externalClass/__pycache__/adminLogin.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/__pycache__/adminLogin.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/externalClass/__pycache__/adminLogin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/__pycache__/adminLogin.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/externalClass/__pycache__/getCheckCartInfo.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/__pycache__/getCheckCartInfo.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/externalClass/__pycache__/getOrderInfo.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/__pycache__/getOrderInfo.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/externalClass/__pycache__/getOrderInfo.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/__pycache__/getOrderInfo.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/externalClass/__pycache__/getPackageDetail.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/__pycache__/getPackageDetail.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/externalClass/__pycache__/getPackageDetail.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/__pycache__/getPackageDetail.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/externalClass/__pycache__/processOrder.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/__pycache__/processOrder.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/externalClass/__pycache__/processOrder.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/__pycache__/processOrder.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/externalClass/__pycache__/publicKeyRsa.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/__pycache__/publicKeyRsa.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/externalClass/__pycache__/publicKeyRsa.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/__pycache__/publicKeyRsa.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/externalClass/__pycache__/userLogin.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/__pycache__/userLogin.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/externalClass/__pycache__/userLogin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/__pycache__/userLogin.cpython-35.pyc -------------------------------------------------------------------------------- /CCIMP/externalClass/accountStatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/accountStatus.py -------------------------------------------------------------------------------- /CCIMP/externalClass/addIVIAppoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/addIVIAppoint.py -------------------------------------------------------------------------------- /CCIMP/externalClass/adminLogin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/adminLogin.py -------------------------------------------------------------------------------- /CCIMP/externalClass/appoint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCIMP/externalClass/appoint/appointConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/appoint/appointConfig.py -------------------------------------------------------------------------------- /CCIMP/externalClass/appoint/getTalkAppointId.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/appoint/getTalkAppointId.py -------------------------------------------------------------------------------- /CCIMP/externalClass/appoint/getTalkAppointInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/appoint/getTalkAppointInfo.py -------------------------------------------------------------------------------- /CCIMP/externalClass/appoint/getTalkPlatformAppointData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/appoint/getTalkPlatformAppointData.py -------------------------------------------------------------------------------- /CCIMP/externalClass/appoint/getTalkPlatformAppointId.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/appoint/getTalkPlatformAppointId.py -------------------------------------------------------------------------------- /CCIMP/externalClass/appoint/getTalkPlatformAppointReconstructionAppointInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/appoint/getTalkPlatformAppointReconstructionAppointInfo.py -------------------------------------------------------------------------------- /CCIMP/externalClass/appoint/setTalkAppointInsertData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/appoint/setTalkAppointInsertData.py -------------------------------------------------------------------------------- /CCIMP/externalClass/appointStatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/appointStatus.py -------------------------------------------------------------------------------- /CCIMP/externalClass/courseStatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/courseStatus.py -------------------------------------------------------------------------------- /CCIMP/externalClass/courseStatusTalkPlatform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/courseStatusTalkPlatform.py -------------------------------------------------------------------------------- /CCIMP/externalClass/getCheckCartInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/getCheckCartInfo.py -------------------------------------------------------------------------------- /CCIMP/externalClass/getEndTimeData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/getEndTimeData.py -------------------------------------------------------------------------------- /CCIMP/externalClass/getJuniorTextBookInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/getJuniorTextBookInfo.py -------------------------------------------------------------------------------- /CCIMP/externalClass/getOrderInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/getOrderInfo.py -------------------------------------------------------------------------------- /CCIMP/externalClass/getPackageDetail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/getPackageDetail.py -------------------------------------------------------------------------------- /CCIMP/externalClass/getRegisterInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/getRegisterInfo.py -------------------------------------------------------------------------------- /CCIMP/externalClass/getSessionUser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/getSessionUser.py -------------------------------------------------------------------------------- /CCIMP/externalClass/getStartTimeData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/getStartTimeData.py -------------------------------------------------------------------------------- /CCIMP/externalClass/getTeacherOpenTimeInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/getTeacherOpenTimeInfo.py -------------------------------------------------------------------------------- /CCIMP/externalClass/getUserLeveInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/getUserLeveInfo.py -------------------------------------------------------------------------------- /CCIMP/externalClass/getUserRole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/getUserRole.py -------------------------------------------------------------------------------- /CCIMP/externalClass/md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/md.py -------------------------------------------------------------------------------- /CCIMP/externalClass/mobileNumberFormatValidity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/mobileNumberFormatValidity.py -------------------------------------------------------------------------------- /CCIMP/externalClass/mobileStatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/mobileStatus.py -------------------------------------------------------------------------------- /CCIMP/externalClass/newWapUserLogin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/newWapUserLogin.py -------------------------------------------------------------------------------- /CCIMP/externalClass/nickName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/nickName.py -------------------------------------------------------------------------------- /CCIMP/externalClass/open_class/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCIMP/externalClass/open_class/getOpenClassInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/open_class/getOpenClassInfo.py -------------------------------------------------------------------------------- /CCIMP/externalClass/open_class/getTeacherInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/open_class/getTeacherInfo.py -------------------------------------------------------------------------------- /CCIMP/externalClass/open_class/getTextBookInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/open_class/getTextBookInfo.py -------------------------------------------------------------------------------- /CCIMP/externalClass/open_class/openClassConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/open_class/openClassConfig.py -------------------------------------------------------------------------------- /CCIMP/externalClass/orderOnConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/orderOnConfig.py -------------------------------------------------------------------------------- /CCIMP/externalClass/postRegisterinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/postRegisterinfo.py -------------------------------------------------------------------------------- /CCIMP/externalClass/postrUserOccupInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/postrUserOccupInfo.py -------------------------------------------------------------------------------- /CCIMP/externalClass/processOrder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/processOrder.py -------------------------------------------------------------------------------- /CCIMP/externalClass/publicKeyRsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/publicKeyRsa.py -------------------------------------------------------------------------------- /CCIMP/externalClass/public_configure/__pycache__/global_configure.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/public_configure/__pycache__/global_configure.cpython-34.pyc -------------------------------------------------------------------------------- /CCIMP/externalClass/public_configure/global_configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/public_configure/global_configure.py -------------------------------------------------------------------------------- /CCIMP/externalClass/public_key/key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/public_key/key.txt -------------------------------------------------------------------------------- /CCIMP/externalClass/smsLoginSmsCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/smsLoginSmsCode.py -------------------------------------------------------------------------------- /CCIMP/externalClass/smsLoginSmsContent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/smsLoginSmsContent.py -------------------------------------------------------------------------------- /CCIMP/externalClass/ssoH5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/ssoH5.py -------------------------------------------------------------------------------- /CCIMP/externalClass/ssoIdentity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/ssoIdentity.py -------------------------------------------------------------------------------- /CCIMP/externalClass/ssoIdentityPhpSessidConfig.py: -------------------------------------------------------------------------------- 1 | __author__ = 'zhangbo' 2 | 3 | phpsessid_data = '1pgafbvhf6992045ammv2fgk20' -------------------------------------------------------------------------------- /CCIMP/externalClass/userIdentity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/userIdentity.py -------------------------------------------------------------------------------- /CCIMP/externalClass/userLogin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/userLogin.py -------------------------------------------------------------------------------- /CCIMP/externalClass/userRegister.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/userRegister.py -------------------------------------------------------------------------------- /CCIMP/externalClass/wapUerLogin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/externalClass/wapUerLogin.py -------------------------------------------------------------------------------- /CCIMP/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/manage.py -------------------------------------------------------------------------------- /CCIMP/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/my.cnf -------------------------------------------------------------------------------- /CCIMP/static/css/bootstrap-datetimepicker/4.17.47/bootstrap-datetimepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/css/bootstrap-datetimepicker/4.17.47/bootstrap-datetimepicker.min.css -------------------------------------------------------------------------------- /CCIMP/static/css/bootstrap/3.3.7/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/css/bootstrap/3.3.7/bootstrap.min.css -------------------------------------------------------------------------------- /CCIMP/static/css/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/css/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /CCIMP/static/css/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/css/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /CCIMP/static/css/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/css/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /CCIMP/static/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/css/dashboard.css -------------------------------------------------------------------------------- /CCIMP/static/css/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/css/loading.css -------------------------------------------------------------------------------- /CCIMP/static/css/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/css/menu.css -------------------------------------------------------------------------------- /CCIMP/static/css/public_top.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/css/public_top.css -------------------------------------------------------------------------------- /CCIMP/static/css/select2/4.0.7/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/css/select2/4.0.7/select2.min.css -------------------------------------------------------------------------------- /CCIMP/static/css/user_login_register_css/commons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/css/user_login_register_css/commons.css -------------------------------------------------------------------------------- /CCIMP/static/css/user_login_register_css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/css/user_login_register_css/login.css -------------------------------------------------------------------------------- /CCIMP/static/image/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/image/loading.gif -------------------------------------------------------------------------------- /CCIMP/static/image/logo_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/image/logo_header.png -------------------------------------------------------------------------------- /CCIMP/static/image/user_login_register_image/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/image/user_login_register_image/background.png -------------------------------------------------------------------------------- /CCIMP/static/image/user_login_register_image/foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/image/user_login_register_image/foreground.png -------------------------------------------------------------------------------- /CCIMP/static/image/user_login_register_image/midground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/image/user_login_register_image/midground.png -------------------------------------------------------------------------------- /CCIMP/static/image/xiala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/image/xiala.png -------------------------------------------------------------------------------- /CCIMP/static/js/appointRecord/appointRecordEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/appointRecord/appointRecordEdit.js -------------------------------------------------------------------------------- /CCIMP/static/js/appointRecord/appointRecordInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/appointRecord/appointRecordInfo.js -------------------------------------------------------------------------------- /CCIMP/static/js/appointRecord/appointRecordStartEndTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/appointRecord/appointRecordStartEndTime.js -------------------------------------------------------------------------------- /CCIMP/static/js/appointRecord/saveAppointRecord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/appointRecord/saveAppointRecord.js -------------------------------------------------------------------------------- /CCIMP/static/js/appointRecord/textJuniorBookInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/appointRecord/textJuniorBookInfo.js -------------------------------------------------------------------------------- /CCIMP/static/js/appointRecord/userUidInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/appointRecord/userUidInfo.js -------------------------------------------------------------------------------- /CCIMP/static/js/bootstrap-datetimepicker/4.17.47/bootstrap-datetimepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/bootstrap-datetimepicker/4.17.47/bootstrap-datetimepicker.min.js -------------------------------------------------------------------------------- /CCIMP/static/js/bootstrap-datetimepicker/moment/2.22.0/moment-with-locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/bootstrap-datetimepicker/moment/2.22.0/moment-with-locales.js -------------------------------------------------------------------------------- /CCIMP/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /CCIMP/static/js/bootstrap/3.3.7/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/bootstrap/3.3.7/bootstrap.min.js -------------------------------------------------------------------------------- /CCIMP/static/js/jquery-1.12.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/jquery-1.12.0.js -------------------------------------------------------------------------------- /CCIMP/static/js/jquery/2.1.1/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/jquery/2.1.1/jquery.min.js -------------------------------------------------------------------------------- /CCIMP/static/js/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/menu.js -------------------------------------------------------------------------------- /CCIMP/static/js/openClassJs/saveOpenClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/openClassJs/saveOpenClass.js -------------------------------------------------------------------------------- /CCIMP/static/js/openClassJs/teacherInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/openClassJs/teacherInfo.js -------------------------------------------------------------------------------- /CCIMP/static/js/openClassJs/textBookInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/openClassJs/textBookInfo.js -------------------------------------------------------------------------------- /CCIMP/static/js/saleOrderJs/UserPackageDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/saleOrderJs/UserPackageDetail.js -------------------------------------------------------------------------------- /CCIMP/static/js/saleOrderJs/processOnOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/saleOrderJs/processOnOrder.js -------------------------------------------------------------------------------- /CCIMP/static/js/saleOrderJs/processOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/saleOrderJs/processOrder.js -------------------------------------------------------------------------------- /CCIMP/static/js/saleOrderJs/saleOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/saleOrderJs/saleOrder.js -------------------------------------------------------------------------------- /CCIMP/static/js/saleOrderJs/userOnOrderDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/saleOrderJs/userOnOrderDetail.js -------------------------------------------------------------------------------- /CCIMP/static/js/select2/4.0.7/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/select2/4.0.7/select2.min.js -------------------------------------------------------------------------------- /CCIMP/static/js/userIforJs/accountStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/userIforJs/accountStatus.js -------------------------------------------------------------------------------- /CCIMP/static/js/userIforJs/courseStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/userIforJs/courseStatus.js -------------------------------------------------------------------------------- /CCIMP/static/js/userIforJs/mobileStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/userIforJs/mobileStatus.js -------------------------------------------------------------------------------- /CCIMP/static/js/userIforJs/ssoH5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/userIforJs/ssoH5.js -------------------------------------------------------------------------------- /CCIMP/static/js/userIforJs/ssoIdentity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/userIforJs/ssoIdentity.js -------------------------------------------------------------------------------- /CCIMP/static/js/userIforJs/userIdentity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/userIforJs/userIdentity.js -------------------------------------------------------------------------------- /CCIMP/static/js/userIforJs/userInfoDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/userIforJs/userInfoDetail.js -------------------------------------------------------------------------------- /CCIMP/static/js/userIforJs/userNickName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/userIforJs/userNickName.js -------------------------------------------------------------------------------- /CCIMP/static/js/userIforJs/userRegister.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/userIforJs/userRegister.js -------------------------------------------------------------------------------- /CCIMP/static/js/userIforJs/userSmsContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/static/js/userIforJs/userSmsContent.js -------------------------------------------------------------------------------- /CCIMP/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/404.html -------------------------------------------------------------------------------- /CCIMP/templates/backup_Page/permission_backup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/backup_Page/permission_backup.html -------------------------------------------------------------------------------- /CCIMP/templates/backup_Page/permission_class_backup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/backup_Page/permission_class_backup.html -------------------------------------------------------------------------------- /CCIMP/templates/backup_Page/project_list_backup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/backup_Page/project_list_backup.html -------------------------------------------------------------------------------- /CCIMP/templates/backup_Page/tool_sale_order_backup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/backup_Page/tool_sale_order_backup.html -------------------------------------------------------------------------------- /CCIMP/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/base.html -------------------------------------------------------------------------------- /CCIMP/templates/common/common_left.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/common/common_left.html -------------------------------------------------------------------------------- /CCIMP/templates/common/common_top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/common/common_top.html -------------------------------------------------------------------------------- /CCIMP/templates/junior_appoint_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/junior_appoint_add.html -------------------------------------------------------------------------------- /CCIMP/templates/links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/links.html -------------------------------------------------------------------------------- /CCIMP/templates/loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/loading.html -------------------------------------------------------------------------------- /CCIMP/templates/login_ccimp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/login_ccimp.html -------------------------------------------------------------------------------- /CCIMP/templates/open_class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/open_class.html -------------------------------------------------------------------------------- /CCIMP/templates/open_class_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/open_class_add.html -------------------------------------------------------------------------------- /CCIMP/templates/permission.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/permission.html -------------------------------------------------------------------------------- /CCIMP/templates/permission_class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/permission_class.html -------------------------------------------------------------------------------- /CCIMP/templates/permission_class_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/permission_class_add.html -------------------------------------------------------------------------------- /CCIMP/templates/permission_class_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/permission_class_edit.html -------------------------------------------------------------------------------- /CCIMP/templates/permission_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/permission_edit.html -------------------------------------------------------------------------------- /CCIMP/templates/project_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/project_add.html -------------------------------------------------------------------------------- /CCIMP/templates/project_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/project_edit.html -------------------------------------------------------------------------------- /CCIMP/templates/project_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/project_list.html -------------------------------------------------------------------------------- /CCIMP/templates/register_ccimp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/register_ccimp.html -------------------------------------------------------------------------------- /CCIMP/templates/systemConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/systemConfig.html -------------------------------------------------------------------------------- /CCIMP/templates/systemConfig_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/systemConfig_add.html -------------------------------------------------------------------------------- /CCIMP/templates/systemConfig_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/systemConfig_edit.html -------------------------------------------------------------------------------- /CCIMP/templates/tool_adduserpoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/tool_adduserpoint.html -------------------------------------------------------------------------------- /CCIMP/templates/tool_appoint_manage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/tool_appoint_manage.html -------------------------------------------------------------------------------- /CCIMP/templates/tool_sale_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/tool_sale_order.html -------------------------------------------------------------------------------- /CCIMP/templates/tool_user_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/CCIMP/templates/tool_user_info.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangbo666/test_ccimp/HEAD/README.md --------------------------------------------------------------------------------