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.
17 lines
361 B
17 lines
361 B
2 years ago
|
#!/usr/bin/env python
|
||
|
# -*- encoding: utf-8 -*-
|
||
|
'''
|
||
|
@Date:2022/07/19 09:43:08
|
||
|
'''
|
||
|
import sys
|
||
|
sys.path.append(".")
|
||
|
from db_logic.db_base import Repository
|
||
|
from models.medicament_models import EntityVariety
|
||
|
|
||
|
|
||
|
#药剂品种业务逻辑类
|
||
|
class BllVariety(Repository):
|
||
|
def __init__(self, entityType=EntityVariety):
|
||
|
return super().__init__(entityType)
|
||
|
|