开始
This commit is contained in:
BIN
common/__pycache__/__init__.cpython-35.pyc
Normal file
BIN
common/__pycache__/__init__.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/libs/__pycache__/Helper.cpython-35.pyc
Normal file
BIN
common/libs/__pycache__/Helper.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/libs/__pycache__/LogService.cpython-35.pyc
Normal file
BIN
common/libs/__pycache__/LogService.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/libs/__pycache__/UploadService.cpython-35.pyc
Normal file
BIN
common/libs/__pycache__/UploadService.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/libs/__pycache__/UrlManager.cpython-35.pyc
Normal file
BIN
common/libs/__pycache__/UrlManager.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/libs/__pycache__/__init__.cpython-35.pyc
Normal file
BIN
common/libs/__pycache__/__init__.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/libs/food/__pycache__/FoodService.cpython-35.pyc
Normal file
BIN
common/libs/food/__pycache__/FoodService.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/libs/member/__pycache__/CartService.cpython-35.pyc
Normal file
BIN
common/libs/member/__pycache__/CartService.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/libs/member/__pycache__/MemberService.cpython-35.pyc
Normal file
BIN
common/libs/member/__pycache__/MemberService.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/libs/pay/__pycache__/PayService.cpython-35.pyc
Normal file
BIN
common/libs/pay/__pycache__/PayService.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/libs/pay/__pycache__/WeChatService.cpython-35.pyc
Normal file
BIN
common/libs/pay/__pycache__/WeChatService.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/libs/queue/__pycache__/QueueService.cpython-35.pyc
Normal file
BIN
common/libs/queue/__pycache__/QueueService.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/libs/user/__pycache__/UserService.cpython-35.pyc
Normal file
BIN
common/libs/user/__pycache__/UserService.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/libs/user/__pycache__/__init__.cpython-35.pyc
Normal file
BIN
common/libs/user/__pycache__/__init__.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/__pycache__/Dongtai_list.cpython-35.pyc
Normal file
BIN
common/models/__pycache__/Dongtai_list.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/__pycache__/Image.cpython-35.pyc
Normal file
BIN
common/models/__pycache__/Image.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/__pycache__/Mendianusertwo.cpython-35.pyc
Normal file
BIN
common/models/__pycache__/Mendianusertwo.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/__pycache__/User.cpython-35.pyc
Normal file
BIN
common/models/__pycache__/User.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/__pycache__/__init__.cpython-35.pyc
Normal file
BIN
common/models/__pycache__/__init__.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/food/__pycache__/Food.cpython-35.pyc
Normal file
BIN
common/models/food/__pycache__/Food.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/food/__pycache__/FoodCat.cpython-35.pyc
Normal file
BIN
common/models/food/__pycache__/FoodCat.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/food/__pycache__/FoodSaleChangeLog.cpython-35.pyc
Normal file
BIN
common/models/food/__pycache__/FoodSaleChangeLog.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/food/__pycache__/FoodStockChangeLog.cpython-35.pyc
Normal file
BIN
common/models/food/__pycache__/FoodStockChangeLog.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/food/__pycache__/WxShareHistory.cpython-35.pyc
Normal file
BIN
common/models/food/__pycache__/WxShareHistory.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/log/__pycache__/AppAccessLog.cpython-35.pyc
Normal file
BIN
common/models/log/__pycache__/AppAccessLog.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/log/__pycache__/AppErrorLog.cpython-35.pyc
Normal file
BIN
common/models/log/__pycache__/AppErrorLog.cpython-35.pyc
Normal file
Binary file not shown.
18
common/models/member/Memberinfoo.py
Normal file
18
common/models/member/Memberinfoo.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# coding: utf-8
|
||||
from sqlalchemy import Column, DateTime, Integer, String
|
||||
from sqlalchemy.schema import FetchedValue
|
||||
from flask_sqlalchemy import SQLAlchemy
|
||||
|
||||
|
||||
db = SQLAlchemy()
|
||||
|
||||
|
||||
class Memberinfoo(db.Model):
|
||||
__tablename__ = 'memberinfoo'
|
||||
|
||||
id = db.Column(db.Integer, primary_key=True)
|
||||
nickname = db.Column(db.String(200), nullable=False, server_default=db.FetchedValue())
|
||||
mobile = db.Column(db.String(100), nullable=False, server_default=db.FetchedValue())
|
||||
storename = db.Column(db.String(200), nullable=False, server_default=db.FetchedValue())
|
||||
updated_time = db.Column(db.DateTime, nullable=False, server_default=db.FetchedValue())
|
||||
created_time = db.Column(db.DateTime, nullable=False, server_default=db.FetchedValue())
|
||||
18
common/models/member/Membermiya.py
Normal file
18
common/models/member/Membermiya.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# coding: utf-8
|
||||
from sqlalchemy import Column, DateTime, Integer, String
|
||||
from sqlalchemy.schema import FetchedValue
|
||||
from flask_sqlalchemy import SQLAlchemy
|
||||
|
||||
|
||||
db = SQLAlchemy()
|
||||
|
||||
|
||||
class Membermiya(db.Model):
|
||||
__tablename__ = 'membermiya'
|
||||
|
||||
id = db.Column(db.Integer, primary_key=True)
|
||||
nickname = db.Column(db.String(200), nullable=False, server_default=db.FetchedValue())
|
||||
mobile = db.Column(db.String(11), nullable=False, server_default=db.FetchedValue())
|
||||
token = db.Column(db.String(200), nullable=False, server_default=db.FetchedValue())
|
||||
updated_time = db.Column(db.DateTime, nullable=False, server_default=db.FetchedValue())
|
||||
created_time = db.Column(db.DateTime, nullable=False, server_default=db.FetchedValue())
|
||||
18
common/models/member/Mendianuserinfo.py
Normal file
18
common/models/member/Mendianuserinfo.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# coding: utf-8
|
||||
from sqlalchemy import Column, DateTime, Integer, String
|
||||
from sqlalchemy.schema import FetchedValue
|
||||
|
||||
|
||||
|
||||
from application import app,db
|
||||
|
||||
|
||||
class Mendianuserinfo(db.Model):
|
||||
__tablename__ = 'mendianuserinfo'
|
||||
|
||||
id = db.Column(db.Integer, primary_key=True)
|
||||
nickname = db.Column(db.String(20), nullable=False, server_default=db.FetchedValue())
|
||||
mobile = db.Column(db.String(20), nullable=False, server_default=db.FetchedValue())
|
||||
storename = db.Column(db.String(20), nullable=False, server_default=db.FetchedValue())
|
||||
updated_time = db.Column(db.DateTime, nullable=False, server_default=db.FetchedValue())
|
||||
created_time = db.Column(db.DateTime, nullable=False, server_default=db.FetchedValue())
|
||||
16
common/models/member/Mendianusertwo.py
Normal file
16
common/models/member/Mendianusertwo.py
Normal file
@@ -0,0 +1,16 @@
|
||||
# coding: utf-8
|
||||
from sqlalchemy import Column, Integer, String
|
||||
from sqlalchemy.schema import FetchedValue
|
||||
from flask_sqlalchemy import SQLAlchemy
|
||||
|
||||
|
||||
from application import db
|
||||
|
||||
|
||||
class Mendianusertwo(db.Model):
|
||||
__tablename__ = 'mendianusertwo'
|
||||
|
||||
id = db.Column(db.Integer, primary_key=True, server_default=db.FetchedValue())
|
||||
name = db.Column(db.String(100), nullable=False)
|
||||
phone = db.Column(db.String(100), nullable=False)
|
||||
storename = db.Column(db.String(100), nullable=False)
|
||||
BIN
common/models/member/__pycache__/Member.cpython-35.pyc
Normal file
BIN
common/models/member/__pycache__/Member.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/member/__pycache__/MemberAddress.cpython-35.pyc
Normal file
BIN
common/models/member/__pycache__/MemberAddress.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/member/__pycache__/MemberCart.cpython-35.pyc
Normal file
BIN
common/models/member/__pycache__/MemberCart.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/member/__pycache__/MemberComments.cpython-35.pyc
Normal file
BIN
common/models/member/__pycache__/MemberComments.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/member/__pycache__/Memberinfoo.cpython-35.pyc
Normal file
BIN
common/models/member/__pycache__/Memberinfoo.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/member/__pycache__/Membermiya.cpython-35.pyc
Normal file
BIN
common/models/member/__pycache__/Membermiya.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/member/__pycache__/Mendianuserinfo.cpython-35.pyc
Normal file
BIN
common/models/member/__pycache__/Mendianuserinfo.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/member/__pycache__/Mendianusertwo.cpython-35.pyc
Normal file
BIN
common/models/member/__pycache__/Mendianusertwo.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/member/__pycache__/OauthMemberBind.cpython-35.pyc
Normal file
BIN
common/models/member/__pycache__/OauthMemberBind.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/pay/__pycache__/OauthAccessToken.cpython-35.pyc
Normal file
BIN
common/models/pay/__pycache__/OauthAccessToken.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/pay/__pycache__/PayOrder.cpython-35.pyc
Normal file
BIN
common/models/pay/__pycache__/PayOrder.cpython-35.pyc
Normal file
Binary file not shown.
Binary file not shown.
BIN
common/models/pay/__pycache__/PayOrderItem.cpython-35.pyc
Normal file
BIN
common/models/pay/__pycache__/PayOrderItem.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/queue/__pycache__/QueueList.cpython-35.pyc
Normal file
BIN
common/models/queue/__pycache__/QueueList.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/stat/__pycache__/StatDailyFood.cpython-35.pyc
Normal file
BIN
common/models/stat/__pycache__/StatDailyFood.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/stat/__pycache__/StatDailyMember.cpython-35.pyc
Normal file
BIN
common/models/stat/__pycache__/StatDailyMember.cpython-35.pyc
Normal file
Binary file not shown.
BIN
common/models/stat/__pycache__/StatDailySite.cpython-35.pyc
Normal file
BIN
common/models/stat/__pycache__/StatDailySite.cpython-35.pyc
Normal file
Binary file not shown.
Reference in New Issue
Block a user