package com.dsh.other.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.dsh.other.entity.Store;
|
import com.dsh.other.entity.StoreEvaluation;
|
import com.dsh.other.model.BaseVo;
|
import com.dsh.other.model.ProvinceAndCityVo;
|
|
import java.util.List;
|
|
|
/**
|
* <p>
|
* 门店信息 服务类
|
* </p>
|
*
|
* @author jqs
|
* @since 2023-06-14
|
*/
|
public interface StoreEvaluationService extends IService<StoreEvaluation> {
|
|
}
|