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.
22 lines
423 B
Java
22 lines
423 B
Java
package com.glxp.api.service.inout;
|
|
|
|
import com.glxp.api.entity.inout.IoOrderEntity;
|
|
|
|
import java.util.List;
|
|
|
|
public interface IoOrderService {
|
|
|
|
|
|
List<IoOrderEntity> selectAll();
|
|
|
|
IoOrderEntity findById(String orderId);
|
|
|
|
IoOrderEntity findByBillNo(String billNO);
|
|
|
|
int insertOrder(IoOrderEntity orderEntity);
|
|
|
|
int insertOrUpdate(IoOrderEntity orderEntity);
|
|
|
|
int update(IoOrderEntity orderEntity);
|
|
}
|