| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package com.railway.business.catenary.mapper;
- import com.railway.business.catenary.domain.BusZzdzxx;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- /**
- * 支柱吊柱信息
- * @author wuhonghao
- * @date 2021/10/11
- */
- @Mapper
- @Repository
- public interface BusZzdzxxMapper {
- /**
- * @Description: 新增
- */
- int insert(BusZzdzxx busZzdzxx);
- /**
- * @Description: 删除
- */
- int delete(@Param("zzId") String zzId);
- /**
- * @Description: 更新
- */
- int update(BusZzdzxx busZzdzxx);
- /**
- * @Description: 获取单个
- */
- BusZzdzxx getInfo(@Param("zzId") String zzId);
- /**
- * @Description: 查询列表
- */
- List<BusZzdzxx> getList(BusZzdzxx busZzdzxx);
- }
|