| | |
| | | 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; |
| | |
| | | * |
| | | * @param userId |
| | | * @param page |
| | | * @param mdcProcessQuantity |
| | | * @param vo |
| | | * @param req |
| | | * @return |
| | | */ |
| | | IPage<MdcProcessQuantityDto> pageList(String userId, Page<MdcProcessQuantityDto> page, MdcProcessQuantity mdcProcessQuantity, HttpServletRequest req); |
| | | IPage<MdcProcessQuantityDto> pageList(String userId, Page<MdcProcessQuantityDto> page, MdcProcessQuantityVo vo, HttpServletRequest req); |
| | | |
| | | /** |
| | | * 导出 |
| | |
| | | * @param mdcProcessQuantity |
| | | * @return |
| | | */ |
| | | ModelAndView exportXls(String userId, MdcProcessQuantity mdcProcessQuantity); |
| | | ModelAndView exportXls(String userId, MdcProcessQuantityVo mdcProcessQuantity); |
| | | |
| | | /** |
| | | * 根据id查询 |
| | |
| | | * @return |
| | | */ |
| | | MdcProcessQuantityDto findById(String id); |
| | | |
| | | /** |
| | | * 添加 |
| | | * |
| | | * @param mdcProcessQuantity |
| | | * @return |
| | | */ |
| | | boolean addData(MdcProcessQuantity mdcProcessQuantity); |
| | | |
| | | } |