You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
452 B
Java
19 lines
452 B
Java
package com.glxp.api.service.inout;
|
|
|
|
import com.glxp.api.entity.inout.IoOrderDetailBizEntity;
|
|
|
|
import java.util.List;
|
|
|
|
public interface IoOrderDetailBizService {
|
|
|
|
List<IoOrderDetailBizEntity> findByOrderId(String orderId);
|
|
|
|
int insert(IoOrderDetailBizEntity orderDetailBizEntity);
|
|
|
|
int update(IoOrderDetailBizEntity orderDetailBizEntity);
|
|
|
|
int deleteById(Integer id);
|
|
|
|
boolean isExit(Long relId, String bacthNo,Integer ignoreId);
|
|
}
|