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.
17 lines
520 B
Java
17 lines
520 B
Java
10 months ago
|
package com.glxp.api.dao.collect;
|
||
|
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
import com.glxp.api.entity.collect.IoCollectOrder;
|
||
|
import com.glxp.api.entity.collect.IoCollectOrderBackup;
|
||
|
import com.glxp.api.req.collect.CollectOrderRequest;
|
||
|
import com.glxp.api.res.collect.IoCollectOrderResponse;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
@Mapper
|
||
|
public interface IoCollectOrderBackupMapper extends BaseMapper<IoCollectOrderBackup> {
|
||
|
|
||
|
}
|