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.
26 lines
726 B
Java
26 lines
726 B
Java
package com.glxp.api.service.inout;
|
|
|
|
import com.glxp.api.entity.inout.IoCodeRelEntity;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.glxp.api.req.inout.IoOrderRelRequest;
|
|
import com.glxp.api.res.inout.IoCodeRelResponse;
|
|
|
|
import java.util.List;
|
|
|
|
public interface IoCodeRelService {
|
|
|
|
List<IoCodeRelResponse> selectIoCodeRelList(IoOrderRelRequest ioOrderRelRequest);
|
|
|
|
int insert(IoCodeRelEntity ioCodeRelEntity);
|
|
|
|
List<IoCodeRelEntity> selectIoCodeRelByCode(String code,String parentCode);
|
|
|
|
Long selectIoCodeRelCount(String parentCode);
|
|
|
|
int delIoCodeRel(String code,String parentCode);
|
|
|
|
List<IoCodeRelResponse> selectIoCodeRelDetailList(IoOrderRelRequest ioOrderRelRequest);
|
|
|
|
|
|
}
|