placeholder_prefix_enum.py 207 B

123456789101112131415
  1. # -*- coding:utf-8 -*-
  2. """
  3. @author: yq
  4. @time: 2023/9/18
  5. @desc: 模板占位符前缀
  6. """
  7. from enum import Enum
  8. class PlaceholderPrefixEnum(Enum):
  9. VALUE = ""
  10. TABLE = "table_"
  11. IMAGE = "image_"