2024-02-06 15:40:01 +08:00
|
|
|
|
package com.zcloud.service.safetyMeeting;
|
|
|
|
|
|
|
|
|
|
import com.zcloud.entity.Page;
|
|
|
|
|
import com.zcloud.entity.PageData;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 说明:TODO
|
|
|
|
|
* 作者:wangxuan
|
|
|
|
|
* 官网:www.zcloudchina.com
|
|
|
|
|
*/
|
|
|
|
|
public interface SafetyMeetingService {
|
|
|
|
|
void save(PageData pageData);
|
|
|
|
|
|
|
|
|
|
void removeById(PageData pageData);
|
|
|
|
|
|
|
|
|
|
List<PageData> list(Page page);
|
|
|
|
|
|
|
|
|
|
PageData findById(PageData pageData);
|
|
|
|
|
|
|
|
|
|
void edit(PageData pageData);
|
2024-02-20 08:38:25 +08:00
|
|
|
|
|
|
|
|
|
List<PageData> saftPersonList(PageData pageData);
|
2024-02-20 16:10:49 +08:00
|
|
|
|
|
|
|
|
|
List<PageData> appDataList(Page page);
|
|
|
|
|
|
|
|
|
|
void confirmMeetingPeople(PageData pageData);
|
|
|
|
|
|
|
|
|
|
PageData findMeetPeopleByUId(PageData pageData);
|
|
|
|
|
|
|
|
|
|
List<PageData> getfeedbackList(PageData pageData);
|
2024-02-06 15:40:01 +08:00
|
|
|
|
}
|