puzhibing
2024-01-30 03f1f3372a10a08f96f3308bfa099e86a55046d0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.ruoyi.system.service.config;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.system.domain.dto.MgtCooperationEditDto;
import com.ruoyi.system.domain.pojo.config.Cooperation;
import com.ruoyi.system.domain.vo.MgtCooperationGetVo;
 
/**
 * <p>
 * 合作 服务类
 * </p>
 *
 * @author jqs
 * @since 2023-05-25
 */
public interface CooperationService extends IService<Cooperation> {
 
    /**
     * @description
     * @author  jqs
     * @date    2023/6/6 9:25
     * @param mgtCooperationEditDto
     * @return  void
     */
    void editCooperation(MgtCooperationEditDto mgtCooperationEditDto);
 
    /**
     * @description
     * @author  jqs
     * @date    2023/7/21 21:34
     * @param
     * @return  MgtCooperationGetVo
     */
    MgtCooperationGetVo getCooperation();
}