BackInfoTranslationsService.java 576 B

123456789101112131415161718
  1. package com.cyksj.service.translations;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.cyksj.model.dto.TranslationsDto;
  4. import com.cyksj.model.entity.BackInfoTranslations;
  5. /**
  6. * 项目名: yhlxj2
  7. * 文件名: BackInfoTranslationsService
  8. * 创建者: JavaZou
  9. * 创建时间:2024/7/16 14:19
  10. */
  11. public interface BackInfoTranslationsService extends IService<BackInfoTranslations> {
  12. void saveOrUpdateTranslations(TranslationsDto dto);
  13. void saveOrUpdateBackInfoTranslations(BackInfoTranslations.Type type, Long funcId, Object obj, String lang);
  14. }