多单位版国产化地质资料管理系统
zs
2026-02-04 fe02f176b512a9d6a4e12437d929e04e99bb7567
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
package com.zbooksoft.gdmis.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.zbooksoft.gdmis.data.entity.BorrowDetail;
import com.zbooksoft.gdmis.data.entity.CatAjjxx;
import com.zbooksoft.gdmis.data.vo.ParentBorrowInfo;
 
import java.util.List;
 
/**
 * <p>
 * 服务类
 * </p>
 *
 * @author cb
 * @since 2020-01-03
 */
public interface BorrowDetailService extends IService<BorrowDetail> {
    List<ParentBorrowInfo> selectDistinctParentBorrowInfo(Long createUserId);
 
    List<ParentBorrowInfo> selectDistinctParentBorrowInfoByFormId(Long formId);
 
    Integer setYswjxx(CatAjjxx catAjjxx);
 
    Integer setYswjxxByIds(List<Long> idList);
 
    Integer setCgwjxx(CatAjjxx catAjjxx);
 
    Integer setCgwjxxByIds(List<Long> idList);
 
    Integer getBorrowCount(Long keyId, Long userId);
}