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<PageData> list(Page page) throws Exception;

    void init(PageData request) throws Exception;

    void approvalApplication(PageData request) throws Exception;

    List<PageData> flowlistPage(Page page)throws Exception;

    void approve(PageData request) throws Exception;

    PageData findInfo(PageData condition);

    List<PageData> findRecordList(PageData condition) throws Exception;

    List<PageData> getAppointApproveList(Page page);
}