44323
2023-12-28 c31f9914a85889bbe090d907ed53cc7a2fdcf8b6
cloud-server-management/src/main/java/com/dsh/course/service/IAgreementService.java
New file
@@ -0,0 +1,16 @@
package com.dsh.course.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.dsh.course.entity.Agreement;
public interface IAgreementService extends IService<Agreement> {
    /**
     * 获取协议内容
     * @param type
     * @return
     * @throws Exception
     */
    String queryByType(Integer type, Integer userType,Integer language) throws Exception;
}