wzy
2022-08-14 b141df9bf9764db8567efebed48006e12ab1f657
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.xzx.gc.role.service;
 
import com.xzx.gc.entity.PartnerGaode;
import com.xzx.gc.role.mapper.PartnerGaodeMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
 
import java.util.List;
 
@Service
@Transactional(rollbackFor = Exception.class)
public class PartnerGaodeService {
    @Autowired
    private PartnerGaodeMapper partnerGaodeMapper;
    public List<PartnerGaode> queryPartnerGaodeList(String partnerId){
        PartnerGaode gaode = new PartnerGaode();
        gaode.setPartnerId(partnerId);
        gaode.setDelFlag(0);
        return partnerGaodeMapper.select(gaode);
    }
 
 
}