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.
22 lines
437 B
22 lines
437 B
2 years ago
|
#!/usr/bin/env python
|
||
|
# -*- encoding: utf-8 -*-
|
||
|
'''
|
||
|
@Date:2022/08/12 15:12:42
|
||
|
'''
|
||
|
import sys
|
||
|
sys.path.append('.')
|
||
|
|
||
|
from db_logic.db_base import Repository
|
||
|
|
||
|
from models.medicament_models import EntityMedicamentRelationImage
|
||
|
|
||
|
from Common.Utils import Utils
|
||
|
|
||
|
|
||
|
#药剂品种业务逻辑类
|
||
|
class BllMedicamentRelationImage(Repository):
|
||
|
def __init__(self, entityType=EntityMedicamentRelationImage):
|
||
|
super().__init__(entityType)
|
||
|
|
||
|
|