You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
638 B
20 lines
638 B
package com.example.demo.sevice;
|
|
|
|
|
|
|
|
import com.example.demo.domain.entity.Audit;
|
|
import com.example.demo.domain.vo.ConsumeDetail;
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
import java.util.List;
|
|
|
|
public interface AuditService {
|
|
int add (Audit audit);
|
|
int edit(Audit audit);
|
|
int goldedit(Audit audit) throws Exception;
|
|
List<Audit> search(Audit audit) ;
|
|
PageInfo<Audit> searchForPage(Integer pageNum, Integer pageSize, Audit audit);
|
|
List<ConsumeDetail> searchForDetail(ConsumeDetail consumeDetail);
|
|
PageInfo<ConsumeDetail> searchForConsumeDetail(Integer pageNum, Integer pageSize, ConsumeDetail consumeDetail);
|
|
}
|
|
|