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);
|
}
|