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.
26 lines
813 B
26 lines
813 B
package com.example.demo.sevice;
|
|
|
|
|
|
import com.example.demo.domain.entity.Detail;
|
|
import com.example.demo.domain.vo.RefundA;
|
|
import com.github.pagehelper.PageInfo;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import java.util.List;
|
|
|
|
@Service
|
|
public interface RefundService {
|
|
int add(Detail detail) ;
|
|
int addAudit(Detail detail);
|
|
void edit(Detail newDetail) ;
|
|
int update(Integer contactId) ;
|
|
boolean existsByContactId(Integer contactId);
|
|
int softDelete(Integer detailId) ;
|
|
Detail selectByOrderCode(String orderCode) ;
|
|
Detail selectByJWCODE(String jwcode) ;
|
|
Detail selectByDetailId(Integer detailId);
|
|
List<Detail> search(Detail detail);
|
|
PageInfo<Detail> searchForPage(Integer pageNum, Integer pageSize, Detail detail);
|
|
List<RefundA> getRefundA(RefundA refundA);
|
|
|
|
}
|