12345678910111213141516171819 |
- package com.ym.mec.biz.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.ym.mec.biz.dal.entity.CourseSchedule;
- import com.ym.mec.biz.dal.entity.TenantAssetsInfo;
- import java.util.List;
- /**
- * 机构资产信息(TenantAssetsInfo)表服务接口
- *
- * @author hgw
- * @since 2021-12-22 14:27:02
- */
- public interface TenantAssetsInfoService extends IService<TenantAssetsInfo> {
- void courseDeductionRules(List<CourseSchedule> dto);
- }
|