| | |
| | | package org.jeecg.modules.mdc.service; |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.mdc.dto.MdcProcessQuantityDto; |
| | | import org.jeecg.modules.mdc.entity.MdcProcessQuantity; |
| | | import org.jeecg.modules.mdc.vo.MdcProcessQuantityVo; |
| | | import org.springframework.web.servlet.ModelAndView; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | |
| | | /** |
| | | * @Description: 加工数量表 |
| | |
| | | */ |
| | | public interface IMdcProcessQuantityService extends IService<MdcProcessQuantity> { |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * |
| | | * @param userId |
| | | * @param page |
| | | * @param vo |
| | | * @param req |
| | | * @return |
| | | */ |
| | | IPage<MdcProcessQuantityDto> pageList(String userId, Page<MdcProcessQuantityDto> page, MdcProcessQuantityVo vo, HttpServletRequest req); |
| | | |
| | | /** |
| | | * 导出 |
| | | * |
| | | * @param userId |
| | | * @param mdcProcessQuantity |
| | | * @return |
| | | */ |
| | | ModelAndView exportXls(String userId, MdcProcessQuantityVo mdcProcessQuantity); |
| | | |
| | | /** |
| | | * 根据id查询 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | MdcProcessQuantityDto findById(String id); |
| | | |
| | | /** |
| | | * 添加 |
| | | * |
| | | * @param mdcProcessQuantity |
| | | * @return |
| | | */ |
| | | boolean addData(MdcProcessQuantity mdcProcessQuantity); |
| | | |
| | | } |