mirror of
https://github.com/himool/HimoolERP.git
synced 2024-11-15 20:06:43 +08:00
18 lines
339 B
Python
18 lines
339 B
Python
from extensions.permissions import InterfacePermission
|
|
|
|
|
|
class GoodsPermission(InterfacePermission):
|
|
code = 'goods'
|
|
|
|
|
|
class BatchPermission(InterfacePermission):
|
|
code = 'batch'
|
|
|
|
|
|
class InventoryPermission(InterfacePermission):
|
|
code = 'inventory'
|
|
|
|
|
|
__all__ = [
|
|
'GoodsPermission', 'BatchPermission', 'InventoryPermission',
|
|
]
|