智慧保安后台管理项目备份
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.springblade.modules.licence.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import org.springblade.modules.licence.entity.LicencePaper;
import org.springblade.modules.licence.vo.LicencePaperVo;
 
/**
 * 许可证服务类
 * @author zhongrj
 */
public interface LicencePaperService extends IService<LicencePaper> {
 
    /**
     * 查询分公司的许可证信息(包含总公司)
     * @param licencePaper 许可证信息对象
     */
    LicencePaperVo getLicenceInfos(LicencePaper licencePaper);
}