1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package com.imed.costaccount.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.imed.costaccount.common.util.PageUtils;
- import com.imed.costaccount.common.util.Result;
- import com.imed.costaccount.model.CostCostingGroup;
- import com.imed.costaccount.model.User;
- import com.imed.costaccount.model.dto.StartDTO;
- import org.springframework.web.multipart.MultipartFile;
- import java.util.List;
- /**
- * 成本归集
- *
- * @author KCYG
- * @email KCYG@xinxicom
- * @date 2021-08-12 11:00:23
- */
- public interface CostCostingGroupService extends IService<CostCostingGroup> {
- /**
- * 批量导入成本数据
- * @param read
- * @param user
- * @param file
- * @param dateTime
- * @param fileType
- * @return
- */
- Result importCostingGroup(List<List<Object>> read, User user, MultipartFile file, String dateTime, Integer fileType);
- /**
- * 分摊前查询
- *
- * @param current 当前页
- * @param pageSize 每页数据大小
- * @param responsibilityCode 责任中心代码
- * @param accountCode 会计中心代码
- * @param date 日期 yyyy-MM-dd
- * @param hospId 医院id
- * @return 分摊前查询列表
- */
- PageUtils queryStartAllocation(Integer current, Integer pageSize, String responsibilityCode, String accountCode, String date, Long hospId);
- /**
- * 成本分摊列表
- * @param current 当前页
- * @param pageSize 每页数据大小
- * @param date 日期 这里是 yyyy-MM-dd
- * @param hospId 医院id
- * @return 分页对象
- */
- PageUtils queryAllocation(Integer current, Integer pageSize, String date, Long hospId);
- /**
- * 开始归集代码
- * @param startDTO {@link StartDTO}
- * @param hospId 医院id
- */
- void startAllocation(StartDTO startDTO, Long hospId);
- }
|