后台服务
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

33 lignes
718 B

  1. package com.iformall.service;
  2. import com.github.pagehelper.PageInfo;
  3. import com.iformall.dto.PagePersonMouldDTO;
  4. import com.iformall.vo.GetPersonMouldVO;
  5. import com.iformall.vo.PagePersonMouldVO;
  6. import com.iformall.vo.PageVO;
  7. /**
  8. * 数字人模板service
  9. *
  10. * @author xmzhao71
  11. * @date 2023-10-17
  12. */
  13. public interface ApiPersonMouldService {
  14. /**
  15. * 分页查询数字人模板
  16. *
  17. * @param dto
  18. * @return {@link PageInfo}<{@link PagePersonMouldVO}>
  19. */
  20. PageVO<PagePersonMouldVO> pagePersonMould(PagePersonMouldDTO dto);
  21. /**
  22. * 单个查询数字人模板
  23. *
  24. * @param id
  25. * @return {@link GetPersonMouldVO}
  26. */
  27. GetPersonMouldVO getPersonMould(Long id);
  28. }