IContactUsPointService.java 298 B

12345678910111213141516
  1. package com.fdkankan.agent.service;
  2. import com.fdkankan.agent.entity.ContactUsPoint;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. /**
  5. * <p>
  6. * 服务类
  7. * </p>
  8. *
  9. * @author
  10. * @since 2025-10-21
  11. */
  12. public interface IContactUsPointService extends IService<ContactUsPoint> {
  13. }