1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.ycl.platform.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.ycl.platform.domain.entity.TContract;
| import jakarta.servlet.http.HttpServletResponse;
|
| /**
| * 【请填写功能名称】Service接口
| *
| * @author ruoyi
| * @date 2024-03-12
| */
| public interface ITContractService extends IService<TContract> {
|
| /**
| * 导入合同模板
| * @param response 结果
| */
| void importTemplate(HttpServletResponse response);
| }
|
|