显式抛出2

This commit is contained in:
2025-11-14 10:13:29 +08:00
parent 595ef332ac
commit 11a3d708c7
2 changed files with 5 additions and 4 deletions

View File

@@ -7,6 +7,7 @@ import com.czg.exception.CzgException;
import com.mybatisflex.core.paginate.Page;
import com.mybatisflex.core.service.IService;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.List;
@@ -14,6 +15,8 @@ import java.util.List;
* @author Administrator
*/
public interface ShopInfoService extends IService<ShopInfo> {
ShopInfo getById(Serializable id) throws CzgException;
Page<ShopInfo> get(PageDTO pageDTO, String shopName, Integer status, Integer isHeadShop);
Page<ShopInfo> getShopByMainId(PageDTO pageDTO, String shopName, Integer status);
@@ -22,7 +25,7 @@ public interface ShopInfoService extends IService<ShopInfo> {
Boolean edit(ShopInfoEditDTO shopInfoEditDTO);
ShopDetailDTO detail(Long id);
ShopDetailDTO detail(Long id) throws CzgException;
ShopInfoByCodeDTO getByCode(String tableCode, String lat, String lng, boolean checkState);