|
|
@ -12,11 +12,18 @@ import com.github.pagehelper.PageInfo; |
|
|
* @Version 1.0 |
|
|
* @Version 1.0 |
|
|
**/ |
|
|
**/ |
|
|
public interface RefundService { |
|
|
public interface RefundService { |
|
|
|
|
|
//多条件查询 |
|
|
PageInfo<CashRecordDone> select(Integer pageNum, Integer pageSize, CashRecordDone cashRecordDone); |
|
|
PageInfo<CashRecordDone> select(Integer pageNum, Integer pageSize, CashRecordDone cashRecordDone); |
|
|
|
|
|
//添加 |
|
|
int add(CashRecordDone cashRecordDone) throws Exception; |
|
|
int add(CashRecordDone cashRecordDone) throws Exception; |
|
|
|
|
|
//修改 |
|
|
int update(CashRecordDone cashRecordDone); |
|
|
int update(CashRecordDone cashRecordDone); |
|
|
|
|
|
// |
|
|
int withdraw(CashRecordDone cashRecordDone); |
|
|
int withdraw(CashRecordDone cashRecordDone); |
|
|
|
|
|
//审核 |
|
|
int review(CashRecordDone cashRecordDone); |
|
|
int review(CashRecordDone cashRecordDone); |
|
|
|
|
|
|
|
|
|
|
|
// 执行 |
|
|
int executor(CashRecordDone cashRecordDone); |
|
|
int executor(CashRecordDone cashRecordDone); |
|
|
|
|
|
//修改原数据状态 |
|
|
|
|
|
int updateStatus(CashRecordDone cashRecordDone); |
|
|
} |
|
|
} |