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.
15 lines
544 B
Java
15 lines
544 B
Java
package com.glxp.api.dao.inout;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.glxp.api.entity.inout.IoDestinyProcessCodeEntity;
|
|
import com.glxp.api.req.inout.IodestinyProcessRequest;
|
|
import com.glxp.api.res.inout.IodestinyProcessResponse;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import java.util.List;
|
|
|
|
@Mapper
|
|
public interface IoDestinyProcessCodeMapper extends BaseMapper<IoDestinyProcessCodeEntity> {
|
|
|
|
List<IodestinyProcessResponse> filterDestinyProcessCode(IodestinyProcessRequest iodestinyProcessRequest);
|
|
} |