admin
2021-01-27 e1a62ec62e7331d97af9302e90e1ce44af8235eb
fanli/src/main/java/com/yeshi/fanli/service/impl/order/LostOrderServiceImpl.java
@@ -326,13 +326,13 @@
     */
    @Override
    public List<LostOrder> listQuery(long start, int count, String key, Integer state, Integer handleType,
                                     Integer type) {
        return lostOrderMapper.listQuery(start, count, key, state, handleType, type);
                                     Integer type, SystemEnum system) {
        return lostOrderMapper.listQuery(start, count, key, state, handleType, type,system);
    }
    @Override
    public long countQuery(String key, Integer state, Integer handleType, Integer type) {
        return lostOrderMapper.countQuery(key, state, handleType, type);
    public long countQuery(String key, Integer state, Integer handleType, Integer type, SystemEnum system) {
        return lostOrderMapper.countQuery(key, state, handleType, type,system);
    }
    @Override