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.
26 lines
612 B
Java
26 lines
612 B
Java
package com.glxp.api.dao.dev;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.glxp.api.entity.dev.DeviceAssetContractEntity;
|
|
import com.glxp.api.req.inv.FilterInvContractRequest;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import java.util.List;
|
|
|
|
@Mapper
|
|
public interface DeviceAssetContractMapper extends BaseMapper<DeviceAssetContractEntity> {
|
|
|
|
List<DeviceAssetContractEntity> filterCompanyContract(FilterInvContractRequest filterInvContractRequest);
|
|
|
|
boolean deleteById(String id);
|
|
|
|
|
|
|
|
boolean updateDeviceContract(DeviceAssetContractEntity deviceAssetContractEntity);
|
|
|
|
|
|
|
|
|
|
|
|
}
|