| | |
| | | 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); |
| | | } |