123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- package com.ruoyi.anpin.service;
- import com.ruoyi.anpin.domain.TMonthEndingClosing;
- import com.ruoyi.common.core.domain.AjaxResult;
- import java.util.List;
- /**
- * 月末结账Service接口
- *
- * @author ruoyi
- * @date 2021-06-04
- */
- public interface ITMonthEndingClosingService
- {
- /**
- * 查询月末结账
- *
- * @param fId 月末结账ID
- * @return 月末结账
- */
- public TMonthEndingClosing selectTMonthEndingClosingById(Long fId);
- /**
- * 查询月末结账列表
- *
- * @param tMonthEndingClosing 月末结账
- * @return 月末结账集合
- */
- public List<TMonthEndingClosing> selectTMonthEndingClosingList(TMonthEndingClosing tMonthEndingClosing);
- /**
- * 新增月末结账
- *
- * @param tMonthEndingClosing 月末结账
- * @return 结果
- */
- public int insertTMonthEndingClosing(TMonthEndingClosing tMonthEndingClosing);
- /**
- * 修改月末结账
- *
- * @param tMonthEndingClosing 月末结账
- * @return 结果
- */
- public AjaxResult updateTMonthEndingClosing(TMonthEndingClosing tMonthEndingClosing);
- /**
- * 批量删除月末结账
- *
- * @param fIds 需要删除的月末结账ID
- * @return 结果
- */
- public int deleteTMonthEndingClosingByIds(Long[] fIds);
- /**
- * 删除月末结账信息
- *
- * @param fId 月末结账ID
- * @return 结果
- */
- public int deleteTMonthEndingClosingById(Long fId);
- }
|