integrated_traffic/src/main/java/com/zcloud/service/relatedparty/OutSourcedService.java

100 lines
1.9 KiB
Java
Raw Normal View History

2024-01-05 08:51:44 +08:00
package com.zcloud.service.relatedparty;
import com.zcloud.entity.Page;
import com.zcloud.entity.PageData;
import java.util.List;
2024-02-03 17:53:40 +08:00
/**
2024-01-05 08:51:44 +08:00
*
* luoxiaobao
* 2022-06-14
* www.zcloudchina.com
*/
public interface OutSourcedService{
/**
* @param pd
* @throws Exception
*/
public void save(PageData pd)throws Exception;
2024-02-03 17:53:40 +08:00
2024-01-05 08:51:44 +08:00
/**
* @param pd
* @throws Exception
*/
public void delete(PageData pd)throws Exception;
2024-02-03 17:53:40 +08:00
2024-01-05 08:51:44 +08:00
/**
* @param pd
* @throws Exception
*/
public void edit(PageData pd)throws Exception;
2024-02-03 17:53:40 +08:00
2024-01-05 08:51:44 +08:00
/**
* @param page
* @throws Exception
*/
public List<PageData> list(Page page)throws Exception;
2024-02-03 17:53:40 +08:00
2024-01-05 08:51:44 +08:00
/**()
* @param pd
* @throws Exception
*/
public List<PageData> listAll(PageData pd)throws Exception;
2024-02-03 17:53:40 +08:00
2024-01-05 08:51:44 +08:00
/**id
* @param pd
* @throws Exception
*/
public PageData findById(PageData pd)throws Exception;
2024-02-03 17:53:40 +08:00
2024-01-05 08:51:44 +08:00
/**
* @param ArrayDATA_IDS
* @throws Exception
*/
public void deleteAll(String[] ArrayDATA_IDS)throws Exception;
2024-02-03 17:53:40 +08:00
/**id
* @param pd
* @throws Exception
*/
public PageData homepagedata(PageData pd)throws Exception;
String getDeptId(String userId);
String getCorpInfoByOutsourcesCreator(PageData pd);
/**
* APP
* @param page
* @return
*/
List<PageData> applylist(Page page);
void editDingWei(PageData pd)throws Exception;
//校验结束重点工程是否有为完成的内容
PageData jieshuOutSourced(PageData pd);
/**
* @param pd
* @throws Exception
*/
public void jie(PageData pd)throws Exception;
void start(PageData pd);
2024-02-20 14:26:09 +08:00
void updateState(PageData pd);
/**
*
* @param page
* @return
*/
List<PageData> outSouceslistPage(Page page);
Integer getDingWeiSum(PageData pd);
2024-01-05 08:51:44 +08:00
}