排产增删改查

This commit is contained in:
2025-07-15 15:54:28 +08:00
parent 1e40a2d344
commit b717b07049
8 changed files with 620 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package com.ruoyi.oa.mapper;
import com.ruoyi.oa.domain.OaReportSchedule;
import com.ruoyi.oa.domain.vo.OaReportScheduleVo;
import com.ruoyi.common.core.mapper.BaseMapperPlus;
/**
* 项目排产Mapper接口
*
* @author liujingchao
* @date 2025-07-15
*/
public interface OaReportScheduleMapper extends BaseMapperPlus<OaReportScheduleMapper, OaReportSchedule, OaReportScheduleVo> {
}