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.
16 lines
329 B
16 lines
329 B
#!/usr/bin/env python
|
|
# -*- encoding: utf-8 -*-
|
|
'''
|
|
@Date:2022/08/27 14:51:13
|
|
'''
|
|
import sys
|
|
sys.path.append('.')
|
|
from db_logic.db_base import Repository
|
|
from models.user_models import EntityUserFace
|
|
|
|
|
|
class BllUserFace(Repository):
|
|
|
|
def __init__(self, entityType=EntityUserFace):
|
|
return super().__init__(entityType)
|