12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- package com.fjhx.customer.service.xiaoman;
- import com.fjhx.customer.entity.xiaoman.po.XiaomanCustomer;
- import com.fjhx.customer.entity.xiaoman.vo.CustomerApiVo;
- import com.ruoyi.common.core.service.BaseService;
- import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
- import com.fjhx.customer.entity.xiaoman.vo.XiaomanCustomerVo;
- import com.fjhx.customer.entity.xiaoman.dto.XiaomanCustomerSelectDto;
- import com.fjhx.customer.entity.xiaoman.dto.XiaomanCustomerDto;
- import java.util.List;
- import java.util.Set;
- public interface XiaomanCustomerService {
-
- List<XiaomanCustomerVo> getList(XiaomanCustomerSelectDto dto);
-
- Page<XiaomanCustomerVo> getPage(XiaomanCustomerSelectDto dto);
-
- XiaomanCustomerVo detail(Long id);
-
- void add(XiaomanCustomerDto xiaomanCustomerDto);
-
- void edit(XiaomanCustomerDto xiaomanCustomerDto);
-
- void delete(Long id);
- void handleSaveOrUpdate(List<CustomerApiVo> customerApiVoList, Set<Long> allCustomer,boolean flag);
- void initAllList();
- void updateList();
- }
|