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.
21 lines
424 B
Java
21 lines
424 B
Java
2 years ago
|
package com.glxp.api.service.inout;
|
||
|
|
||
|
import com.glxp.api.entity.inout.IoCodeEnttity;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
public interface IoCodeService {
|
||
|
|
||
|
int insert(IoCodeEnttity codeEnttity);
|
||
|
|
||
|
boolean insertBatch(List<IoCodeEnttity> codeEnttities);
|
||
|
|
||
|
List<IoCodeEnttity> findByOrderId(String billNo);
|
||
|
|
||
|
int updateById(IoCodeEnttity codeEnttity);
|
||
|
|
||
|
public IoCodeEnttity findByUnique(String orderId, String code);
|
||
|
|
||
|
|
||
|
}
|