You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
462 B
15 lines
462 B
import json
|
|
from Orm import Channel
|
|
from playhouse.shortcuts import model_to_dict, dict_to_model
|
|
|
|
|
|
class ChannelService:
|
|
def getOneByChannelId(channelId):
|
|
return Channel.get_or_none(Channel.channelId == channelId)
|
|
|
|
def updateTimeByChannelId(channelId, chageTime):
|
|
Channel.update(channelReptileTime=chageTime).where(
|
|
Channel.channelId == channelId).execute()
|
|
|
|
def getChannelList():
|
|
return Channel.select().execute()
|