1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package com.iamberry.rst.faces.approval;
- import com.iamberry.rst.core.approval.ApplyPick;
- import com.iamberry.rst.core.page.PageRequest;
- import com.iamberry.rst.core.page.PagedResult;
- import java.util.List;
- /**
- * 提货申请信息接口
- * @author
- * @Date 2018-09-19
- */
- public interface ApplyPickService {
- /**
- * 获取集合
- * @param applyPick
- * @return List
- */
- List<ApplyPick> getApplyPickList(ApplyPick applyPick);
- /**
- * 分页集合
- * @param pageRequest
- * @return
- */
- PagedResult<ApplyPick> listApplyPickPage(PageRequest<ApplyPick> pageRequest);
- /**
- * 查询单条数据
- * @param id
- * @return applyPick
- */
- ApplyPick getApplyPickById(Integer id);
- /**
- * 增加数据
- * @param applyPick
- * @return Integer
- */
- Integer save(ApplyPick applyPick);
- /**
- * 修改数据
- * @param applyPick
- * @return Integer
- */
- Integer update(ApplyPick applyPick);
- }
|