zhubaomin
2025-04-15 70b2c7a1f5b54cf9157d8fce4d6a9b0f2fadaebe
pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoBa/BaDictMapper.java
New file
@@ -0,0 +1,27 @@
package com.dy.pipIrrGlobal.daoBa;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dy.pipIrrGlobal.pojoBa.BaDict;
import org.apache.ibatis.annotations.Mapper;
/**
 * @author ZhuBaoMin
 * @date 2024-06-26 20:14
 * @LastEditTime 2024-06-26 20:14
 * @Description
 */
@Mapper
public interface BaDictMapper extends BaseMapper<BaDict> {
    int deleteByPrimaryKey(Integer id);
    int insert(BaDict record);
    int insertSelective(BaDict record);
    BaDict selectByPrimaryKey(Integer id);
    int updateByPrimaryKeySelective(BaDict record);
    int updateByPrimaryKey(BaDict record);
}