|
@@ -34,7 +34,8 @@ public class KwtLogisticsOrderContractRepository extends ServiceImpl<KwtLogistic
|
|
|
public List<KwtLogisticsOrderContract> queryByContractId(Long contractId ) {
|
|
public List<KwtLogisticsOrderContract> queryByContractId(Long contractId ) {
|
|
|
return list(Wrappers.<KwtLogisticsOrderContract>lambdaQuery()
|
|
return list(Wrappers.<KwtLogisticsOrderContract>lambdaQuery()
|
|
|
.eq(KwtLogisticsOrderContract::getDelFlag,0)
|
|
.eq(KwtLogisticsOrderContract::getDelFlag,0)
|
|
|
- .eq(KwtLogisticsOrderContract::getContractId,contractId));
|
|
|
|
|
|
|
+ .eq(KwtLogisticsOrderContract::getContractId,contractId)
|
|
|
|
|
+ .select(KwtLogisticsOrderContract::getId,KwtLogisticsOrderContract::getContractId,KwtLogisticsOrderContract::getLOrderId));
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public List<KwtLogisticsOrderContract> queryByLogContractIds(Set<Long> logContractIds) {
|
|
public List<KwtLogisticsOrderContract> queryByLogContractIds(Set<Long> logContractIds) {
|