guoshilong
2023-11-22 363d13fd798185779d670764abbbd68ecb984dea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package cn.gistack.sm.sjztmd.mapper;
 
import cn.gistack.sm.sjztmd.entity.TbAttResRsbVerspi;
import cn.gistack.sm.sjztmd.entity.TbResStagCapDisc;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
 
public interface TbResStagCapDiscMapper extends BaseMapper<TbResStagCapDisc> {
    void deleteByResGuid(@Param("resGuid") String resGuid);
 
    List<TbResStagCapDisc> getDetailByResGuid(@Param("resGuid") String resGuid);
}