IAgentAuditService.java 340 B

1234567891011121314151617
  1. package com.fdkankan.ucenter.service;
  2. import com.fdkankan.ucenter.entity.AgentAudit;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. /**
  5. * <p>
  6. * 代理商申请表 服务类
  7. * </p>
  8. *
  9. * @author
  10. * @since 2022-07-29
  11. */
  12. public interface IAgentAuditService extends IService<AgentAudit> {
  13. void add(AgentAudit param);
  14. }