linwe
2024-07-29 ade9cc120afc0fbd73f1b2a906cb2cb5c391e6c6
1
2
3
4
5
6
7
8
9
10
package org.springblade.modules.partyOrganization.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.springblade.core.mp.base.BaseService;
import org.springblade.modules.partyOrganization.entity.PartyOrganization;
import org.springblade.modules.partyOrganization.vo.PartyOrganizationVO;
 
public interface IPartyOrganizationService extends BaseService<PartyOrganization> {
    IPage<PartyOrganizationVO> getPage(IPage<PartyOrganizationVO> page, PartyOrganizationVO partyOrganizationVO);
}