zhanghl
2025-05-19 668eed92806a814d0ea20fbab1caa7d1e6d197ea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.aps.core.service.impl.ApsPlate;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.aps.core.domain.ApsPlate.ApsPlateStandardRequireOrderEndDay;
import com.aps.core.service.ApsPlateStandardRequireOrderEndDayService;
import com.aps.core.mapper.ApsPlateStandardRequireOrderEndDayMapper;
import org.springframework.stereotype.Service;
 
/**
* @author zhl
* @description 针对表【aps_plate_standard_require_order_end_day(需求计划完成日期表)】的数据库操作Service实现
* @createDate 2025-05-19 10:20:50
*/
@Service
public class ApsPlateStandardRequireOrderEndDayServiceImpl extends ServiceImpl<ApsPlateStandardRequireOrderEndDayMapper, ApsPlateStandardRequireOrderEndDay>
    implements ApsPlateStandardRequireOrderEndDayService{
 
}