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
322 B
15 lines
322 B
3 years ago
|
#!/usr/bin/env python
|
||
|
# -*- encoding: utf-8 -*-
|
||
|
'''
|
||
|
@Date:2022/07/18 16:32:26
|
||
|
'''
|
||
|
from db_logic.db_base import Repository
|
||
|
from models.client_models import EntityClient
|
||
|
|
||
|
|
||
|
|
||
|
#用户操作业务逻辑类
|
||
|
class BllClient(Repository):
|
||
|
def __init__(self, entityType=EntityClient):
|
||
|
return super().__init__(entityType)
|