杜洪波
2025-05-14 9db1c6c261049fbdcb104e6c0e07fa544bb42013
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.product.administration.service.ide;
 
import com.product.core.entity.DataTableEntity;
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
 
/**
 * @Title: ILeaveRequestService
 * @Date: 2020-11-13 09:27:35
 * @Author: Xin.Luo
 * @Description:  请假申请
 */
public interface ILeaveRequestService {
  /**
   *     获取所有请假列表
   * @param
   * @return
   * @throws BaseException
   */
  DataTableEntity getLeaveRequestAll(String tableName) throws BaseException;
 
  /**
   *     保存请假数据
   * @param
   * @return
   * @throws BaseException
   */
  String saveLeaveRequest(FieldSetEntity fieldSetEntity) throws BaseException;
 
  /**
   *
   * @param tableName 表名
   * @param uuids uuids
   * @return
   * @throws BaseException
   */
  boolean delLeaveRequest(String tableName,String uuids) throws BaseException;
  
  /**
  *
  * @param fs
  * @return
  * @throws BaseException
  */
  boolean update(FieldSetEntity fs) throws BaseException;
 
}