forked from integrated_whb/integrated_whb
29 lines
598 B
Java
29 lines
598 B
Java
package com.zcloud.service.comprehensive;
|
|
|
|
import com.zcloud.entity.Page;
|
|
import com.zcloud.entity.PageData;
|
|
|
|
import java.util.List;
|
|
|
|
public interface TrafficDrivingCommitmentService {
|
|
/**新增
|
|
* @param pd
|
|
* @throws Exception
|
|
*/
|
|
public void save(PageData pd)throws Exception;
|
|
|
|
/**修改
|
|
* @param pd
|
|
* @throws Exception
|
|
*/
|
|
public void edit(PageData pd)throws Exception;
|
|
|
|
List<PageData> listForDrivingCommitment(Page page);
|
|
|
|
List<PageData> getDrivingCommitment(PageData pd);
|
|
|
|
void delete(PageData pd);
|
|
|
|
PageData findById(PageData pd);
|
|
}
|