PartyHelpService.java 753 B

1234567891011121314151617181920212223
  1. package com.ghsc.partybuild.service;
  2. import com.github.pagehelper.PageInfo;
  3. import com.ghsc.partybuild.vo.PartyHelpImportVo;
  4. import com.ghsc.partybuild.vo.PartyHelpVo;
  5. import java.util.List;
  6. public interface PartyHelpService {
  7. PageInfo<PartyHelpVo> getList(int page, int rows, String partyCode, String userName, String userCode, Integer year, Integer recordStatus);
  8. PartyHelpVo get(String partyHelpID);
  9. Integer save(PartyHelpVo data, String userId, String userName) throws Exception;
  10. Integer delete(List<String> ids);
  11. Integer approve(List<String> ids, String approveUserID, Integer approveResult);
  12. List<PartyHelpImportVo> importData(List<PartyHelpImportVo> dataList, String userID, String userName) throws Exception;
  13. }