44323
2023-12-13 c03ee3f08abb3c7ffaed5b1f70ba1c9c4df15543
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;
}