zhanghl
2025-05-22 d096e4f9fd6d63f40d0ec27f767be59848197f5b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.aps.core.service;
 
import com.aps.core.domain.ApsPlate.ApsPlateStandardRequireOrderEndDay;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.util.List;
 
/**
* @author zhl
* @description 针对表【aps_plate_standard_require_order_end_day(需求计划完成日期表)】的数据库操作Service
* @createDate 2025-05-19 10:20:50
*/
public interface ApsPlateStandardRequireOrderEndDayService extends IService<ApsPlateStandardRequireOrderEndDay> {
 
    int saveBatch(List<Long> planIds);
}