1234567891011121314151617 |
- package com.fdkankan.ucenter.service;
- import com.fdkankan.ucenter.entity.AgentAudit;
- import com.baomidou.mybatisplus.extension.service.IService;
- /**
- * <p>
- * 代理商申请表 服务类
- * </p>
- *
- * @author
- * @since 2022-07-29
- */
- public interface IAgentAuditService extends IService<AgentAudit> {
- void add(AgentAudit param);
- }
|