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.
|
|
|
package com.glxp.api.service.basic;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
import com.glxp.api.entity.basic.DlEntrustReceEntity;
|
|
|
|
import com.glxp.api.entity.basic.EntrustReceEntity;
|
|
|
|
import com.glxp.api.req.basic.BasicEntrustRecRequest;
|
|
|
|
import com.glxp.api.res.basic.EntrustReceResponse;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
public interface EntrustReceService extends IService<EntrustReceEntity> {
|
|
|
|
|
|
|
|
EntrustReceEntity findById(Integer id);
|
|
|
|
|
|
|
|
List<EntrustReceEntity> filterEntrustRec(BasicEntrustRecRequest basicEntrustRecRequest);
|
|
|
|
|
|
|
|
EntrustReceEntity findByUnique(String action, Long entrustUser);
|
|
|
|
|
|
|
|
List<DlEntrustReceEntity> downloadEntrustRec(BasicEntrustRecRequest basicEntrustRecRequest);
|
|
|
|
|
|
|
|
List<EntrustReceResponse> filterJoinEntrustRec(BasicEntrustRecRequest basicEntrustRecRequest);
|
|
|
|
|
|
|
|
int insertEntrustRec(EntrustReceEntity entrustReceEntity);
|
|
|
|
|
|
|
|
boolean deleteById(String id);
|
|
|
|
|
|
|
|
boolean deleteAll();
|
|
|
|
|
|
|
|
int updateEntrustRec(EntrustReceEntity warehouseEntity);
|
|
|
|
|
|
|
|
}
|