| | |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.mdc.dto.MdcProcessQuantityDto; |
| | | import org.jeecg.modules.mdc.entity.MdcProcessQuantity; |
| | | import org.jeecg.modules.mdc.vo.MdcProcessQuantityVo; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: 加工数量表 |
| | |
| | | */ |
| | | public interface MdcProcessQuantityMapper extends BaseMapper<MdcProcessQuantity> { |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * |
| | | * @param page |
| | | * @param mdcProcessQuantity |
| | | * @return |
| | | */ |
| | | IPage<MdcProcessQuantityDto> pageList(Page<MdcProcessQuantityDto> page, @Param("mdcProcessQuantity") MdcProcessQuantityVo mdcProcessQuantity); |
| | | |
| | | /** |
| | | * 导出数据 |
| | | * |
| | | * @param mdcProcessQuantity |
| | | * @return |
| | | */ |
| | | List<MdcProcessQuantityDto> list(@Param("mdcProcessQuantity") MdcProcessQuantityVo mdcProcessQuantity); |
| | | |
| | | /** |
| | | * 根据id查询 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | MdcProcessQuantityDto findById(@Param("id") String id); |
| | | |
| | | /** |
| | | * @param equipmentId |
| | | * @param validDate |
| | | * @return |
| | | */ |
| | | List<MdcProcessQuantityDto> findList(@Param("equipmentId") String equipmentId, @Param("validDate") String validDate); |
| | | |
| | | } |