nickchange
2023-12-08 1b9a01bf5000714b08a75a50dd1f5f3eab65d888
1
2
3
4
5
6
7
8
9
10
package com.dsh.course.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.dsh.course.entity.SysIntegral;
 
public interface ISysIntegralService extends IService<SysIntegral> {
 
 
    SysIntegral query(Integer companyId);
}