package com.zy.system.service; import com.zy.system.entity.LicenseInfos; import com.baomidou.mybatisplus.extension.service.IService; public interface LicenseInfosService extends IService { LicenseInfos getLatestLicense(); LicenseInfos getLatestLicenseByRequestCode(String requestCode); }