23 lines
683 B
23 lines
683 B
package com.platform.service;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import com.platform.entities.CheckoutEntity;
|
|
import com.platform.entities.PreDataInfo;
|
|
|
|
public interface ICheckoutService {
|
|
|
|
public List<CheckoutEntity> findAll() throws Exception;
|
|
|
|
public List<CheckoutEntity> checkAll(List<CheckoutEntity> list) throws Exception;
|
|
|
|
public List<CheckoutEntity> deleteAll(List<CheckoutEntity> list) throws Exception;
|
|
|
|
public int updateStandardInfo(PreDataInfo ck) throws Exception;
|
|
|
|
public Map<String, PreDataInfo> findDetail(CheckoutEntity ck) throws Exception;
|
|
|
|
public List<CheckoutEntity> findByCity(String city) throws Exception;
|
|
}
|