| | |
| | | package com.aps.core.mapper; |
| | | |
| | | import com.aps.core.domain.ApsPlate.ApsPlateOrderPlanDate; |
| | | import com.aps.core.domain.ApsPlate.ApsPlateStandardRequireOrderEndDay; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | |
| | | public interface ApsPlateStandardRequireOrderEndDayMapper extends BaseMapper<ApsPlateStandardRequireOrderEndDay> { |
| | | |
| | | Integer batchInsert(List<Long> planIds,String createBy); |
| | | Integer batchRemove(List<Long> planIds); |
| | | |
| | | |
| | | Integer batchRemoveByPlanId(List<Long> planIds); |
| | | Integer batchRemove(); |
| | | } |
| | | |
| | | |