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.
23 lines
536 B
Java
23 lines
536 B
Java
2 years ago
|
package com.glxp.api.dao.inv;
|
||
|
|
||
|
|
||
|
import com.glxp.api.entity.inv.InnerOrderEntity;
|
||
|
import com.glxp.api.req.inv.InnerOrderRequest;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
@Mapper
|
||
|
public interface InnerOrderDao {
|
||
|
|
||
|
List<InnerOrderEntity> queryPageList(InnerOrderRequest innerOrderRequest);
|
||
|
|
||
|
Integer insert(InnerOrderEntity innerOrderEntity);
|
||
|
|
||
|
Boolean update(InnerOrderEntity innerOrderEntity);
|
||
|
|
||
|
Boolean deleteByIds(@Param("ids") List<String> ids);
|
||
|
|
||
|
}
|