后台服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
722 B

  1. package com.iformall.service;
  2. import java.util.*;
  3. import com.github.pagehelper.PageInfo;
  4. import com.iformall.domain.po.SellerAgent;
  5. import com.iformall.domain.po.SellerAgentAccount;
  6. public interface SellerAgentService {
  7. PageInfo<SellerAgent> listAsPage(SellerAgent record, Integer pageIndex, Integer pageSize);
  8. List<SellerAgent> list(SellerAgent agent);
  9. void saveOrUpdate(SellerAgent agent);
  10. SellerAgent getById(Long id);
  11. List<SellerAgentAccount> getAccountList(Long agentId, Integer plat);
  12. void saveOrUpdateAccount(SellerAgentAccount agentAccount);
  13. void deleteSellerAgent(Long id);
  14. void deleteAccountById(Long accountId);
  15. void deleteAccountByAgentId(Long agentId);
  16. }