111
fei.wang
2025-04-18 a6686570ac48648e2bf2ec93d27272a4473cac08
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.hxzkappboot.service;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.hxzkappboot.pojo.TbDepartment;
 
import java.text.ParseException;
import java.util.List;
 
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author wangfei
 * @since 2024-03-08
 */
public interface TbDepartmentService extends IService<TbDepartment> {
    List<TbDepartment> findbumen(String juese,String company) throws ParseException;
 
    List<TbDepartment> findAll(Page page, String objectid, String company,String juese);
 
    int updateBumen(TbDepartment tbWarning);
}