feat(oa): 新增客户管理和资金日记账功能
- 添加客户管理相关实体、控制器、服务和映射 - 实现客户信息的增删改查功能 - 添加资金日记账相关实体、控制器、服务和映射 - 实现资金日记账的增删改查功能 - 优化数据库连接配置 - 更新 BOM 项关联的表名
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
package com.gear.oa.service;
|
||||
|
||||
import com.gear.oa.domain.GearPayable;
|
||||
import com.gear.oa.domain.vo.GearPayableVo;
|
||||
import com.gear.oa.domain.bo.GearPayableBo;
|
||||
import com.gear.common.core.page.TableDataInfo;
|
||||
import com.gear.common.core.domain.PageQuery;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 应付款管理(宽松版)Service接口
|
||||
*
|
||||
* @author Joshi
|
||||
* @date 2025-09-02
|
||||
*/
|
||||
public interface IGearPayableService {
|
||||
|
||||
/**
|
||||
* 查询应付款管理(宽松版)
|
||||
*/
|
||||
GearPayableVo queryById(Long payableId);
|
||||
|
||||
/**
|
||||
* 查询应付款管理(宽松版)列表
|
||||
*/
|
||||
TableDataInfo<GearPayableVo> queryPageList(GearPayableBo bo, PageQuery pageQuery);
|
||||
|
||||
/**
|
||||
* 查询应付款管理(宽松版)列表
|
||||
*/
|
||||
List<GearPayableVo> queryList(GearPayableBo bo);
|
||||
|
||||
/**
|
||||
* 新增应付款管理(宽松版)
|
||||
*/
|
||||
Boolean insertByBo(GearPayableBo bo);
|
||||
|
||||
/**
|
||||
* 修改应付款管理(宽松版)
|
||||
*/
|
||||
Boolean updateByBo(GearPayableBo bo);
|
||||
|
||||
/**
|
||||
* 校验并批量删除应付款管理(宽松版)信息
|
||||
*/
|
||||
Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid);
|
||||
|
||||
Boolean updatePaidAmountAndAddJournal(GearPayableBo bo);
|
||||
}
|
||||
Reference in New Issue
Block a user