package org.sxkj.system.service; import com.baomidou.mybatisplus.extension.service.IService; import org.sxkj.system.entity.ManageLicense; import java.io.IOException; public interface IManageLicenseService extends IService { /** * 创建 * @param manageLicense */ void createLicense(ManageLicense manageLicense) throws IOException; }