Compare commits
3 Commits
Author | SHA1 | Date |
---|---|---|
|
9496d059cd | 2 years ago |
|
df9775a371 | 2 years ago |
|
9593857576 | 2 years ago |
@ -1,3 +1,36 @@
|
|||||||
class Database(object):
|
class Database(object):
|
||||||
def connection(self):
|
def connection(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def init(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def addBook(self, unique_id, isbn, state):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def removeBook(self, unique_id):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def addUser(self, user_id, userpass_word, permission, nick_name):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def removeUser(self, unique_id):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def addBookInformation(self, isbn, author, description, price, made_time, image, category):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def removeBookInformation(self, isbn):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def brownBook(self, unique_id, brownuser):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def stillBook(self, unique_id):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def addCategory(self, category):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def removeCategory(self, category):
|
||||||
|
pass
|
Loading…
Reference in new issue