package com.product.administration.service.ide;
|
|
import com.product.core.entity.FieldSetEntity;
|
import com.product.core.exception.BaseException;
|
|
/**
|
* Copyright LX-BASE
|
* @Title: LX-BASE-
|
* @Project: IClaimExpenseService
|
* @Date: 202106-01 10:17:00
|
* @Author: luoxin
|
* @Description: 费用报销
|
*/
|
public interface IClaimExpenseService {
|
|
/**
|
* 保存费用报销
|
*/
|
String saveClaimExpense(FieldSetEntity fieldSetEntity) throws BaseException;
|
|
/**
|
* 删除费用报销
|
*/
|
boolean delClaimExpense(FieldSetEntity fs) throws BaseException;
|
|
}
|