郑永安
2023-06-19 7a6abd05683528032687c75e80e0bd2030a3e46c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.gkhy.safePlatform.specialWork.service.baseService;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.gkhy.safePlatform.specialWork.entity.WorkApplyOperatorInfo;
 
import java.util.List;
 
public interface WorkApplyOperatorInfoService extends IService<WorkApplyOperatorInfo> {
 
 
    void saveBatchOperator(List<WorkApplyOperatorInfo> operatorEntities);
 
    List<WorkApplyOperatorInfo> listWorkOperatorByWorkApplyId(Long workApplyId);
}