103 lines
2.1 KiB
Java
103 lines
2.1 KiB
Java
package com.ruoyi.bill.service;
|
|
|
|
import java.util.List;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.ruoyi.bill.domain.Poundmst;
|
|
|
|
/**
|
|
* 主榜单信息Service接口
|
|
*
|
|
* @author ruoyi
|
|
* @date 2025-06-16
|
|
*/
|
|
public interface IPoundmstService extends IService<Poundmst>
|
|
{
|
|
/**
|
|
* 查询主榜单信息
|
|
*
|
|
* @param id 主榜单信息主键
|
|
* @return 主榜单信息
|
|
*/
|
|
public Poundmst selectPoundmstById(String id);
|
|
|
|
/**
|
|
* 查询主榜单信息列表
|
|
*
|
|
* @param poundmst 主榜单信息
|
|
* @return 主榜单信息集合
|
|
*/
|
|
public List<Poundmst> selectPoundmstList(Poundmst poundmst);
|
|
|
|
/**
|
|
* 新增主榜单信息
|
|
*
|
|
* @param poundmst 主榜单信息
|
|
* @return 结果
|
|
*/
|
|
public int insertPoundmst(Poundmst poundmst);
|
|
|
|
/**
|
|
* 新增主榜单信息(mybatis)
|
|
*
|
|
* @param poundmst 主榜单信息
|
|
* @return 结果
|
|
*/
|
|
public int insertPoundmstDpi(Poundmst poundmst);
|
|
|
|
/**
|
|
* 修改主榜单信息
|
|
*
|
|
* @param poundmst 主榜单信息
|
|
* @return 结果
|
|
*/
|
|
public int updatePoundmst(Poundmst poundmst);
|
|
|
|
/**
|
|
* 完成主榜单信息
|
|
*
|
|
* @param poundmst 主榜单信息
|
|
* @return 结果
|
|
*/
|
|
public int completePoundmst(Poundmst poundmst);
|
|
|
|
/**
|
|
* 批量删除主榜单信息
|
|
*
|
|
* @param ids 需要删除的主榜单信息主键集合
|
|
* @return 结果
|
|
*/
|
|
public int deletePoundmstByIds(String[] ids);
|
|
|
|
/**
|
|
* 根据id更新fid 字段
|
|
*
|
|
* @param id 目标对象id
|
|
*@param fid 对象fid字段值
|
|
* @return 结果
|
|
*/
|
|
public int updateFidById(String id, String fid);
|
|
|
|
/**
|
|
* 根据id进行单据状态完成。
|
|
* @param id
|
|
* @return
|
|
*/
|
|
public int completeBillMst(String id);
|
|
|
|
/**
|
|
* 根据Id进行单据反完成
|
|
* @param id
|
|
* @return
|
|
*/
|
|
public int unCompleteBillMst(String id);
|
|
|
|
/**
|
|
* 删除主榜单信息信息
|
|
*
|
|
* @param id 主榜单信息主键
|
|
* @return 结果
|
|
*/
|
|
public int deletePoundmstById(String id);
|
|
}
|