mitao
7 天以前 21488a55ba76ae4f1296b608fbcdf1f06036db64
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.panzhihua.sangeshenbian.service;
 
import com.panzhihua.sangeshenbian.model.entity.ComAct;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
 * <p>
 * 社区表 服务类
 * </p>
 *
 * @author 
 * @since 2025-02-23
 */
public interface IComActService extends IService<ComAct> {
    /**
     * 根据社区名称和街道id查询社区
     * @param communityName
     * @param streetId
     * @return
     */
    ComAct getCommunityByNameAndStreet(String communityName, String streetId);
}