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.
udi-spms-java/src/main/java/com/glxp/api/service/purchase/PurArrivalService.java

22 lines
537 B
Java

package com.glxp.api.service.purchase;
import com.glxp.api.entity.purchase.PurArrivalEntity;
import com.glxp.api.req.purchase.PurArrivalRequest;
import com.glxp.api.res.purchase.PurArrivalResponse;
import java.util.List;
public interface PurArrivalService {
List<PurArrivalResponse> queryPageList(PurArrivalRequest purArrivalRequest);
Boolean insert(PurArrivalEntity purArrivalEntity);
Boolean update(PurArrivalEntity purArrivalEntity);
Boolean deleteByIds(List<Integer> ids);
Boolean deleteById(long id);
}