package com.zcloud.service.xgf; import com.zcloud.entity.Page; import com.zcloud.entity.PageData; import java.util.List; public interface XgfUserService { void save(PageData pd) throws Exception; void saveDetail(PageData pd) throws Exception; List list(Page page) throws Exception; void init(PageData request) throws Exception; void approvalApplication(PageData request) throws Exception; List flowlistPage(Page page)throws Exception; void approve(PageData request) throws Exception; }